diff --git a/.travis.yml b/.travis.yml index f1b9af4..eea3dd4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ rust: before_script: - rustup component add rust-src - #- rustup component add clippy --toolchain=nightly + - rustup component add clippy --toolchain=nightly - (test -x $HOME/.cargo/bin/cargo-install-update || cargo install cargo-update) - (test -x $HOME/.cargo/bin/cargo-xbuild || cargo install cargo-xbuild) - (test -x $HOME/.cargo/bin/cargo-make || cargo install cargo-make) @@ -44,10 +44,10 @@ script: deploy: provider: pages + local-dir: target/book-output skip-cleanup: true github-token: $GITHUB_TOKEN - target-branch: master - keep-history: true + keep-history: false name: DocsBot verbose: true on: diff --git a/Cargo.toml b/Cargo.toml index eafa519..2c50455 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gba" description = "A crate (and book) for making GBA games with Rust." -version = "0.3.0-pre" +version = "0.3.0" authors = ["Lokathor ", "Thomas Winwood "] repository = "https://github.com/rust-console/gba" readme = "README.md" @@ -13,11 +13,7 @@ publish = false [dependencies] typenum = "1.10" -gba-proc-macro = "0.4.1" - -#[dev-dependencies] -#quickcheck="0.7" -# TODO: F +gba-proc-macro = "0.5" [profile.release] lto = true diff --git a/README.md b/README.md index 0233d8f..a8a30da 100644 --- a/README.md +++ b/README.md @@ -8,16 +8,18 @@ # gba -This repository is both a [Tutorial Book](https://rust-console.github.io/gba/) -that teaches you what you need to know to write Rust games for the GameBoy -Advance (GBA), and also a [crate](https://crates.io/crates/gba) that you can -use to do the same. +_Eventually_ there will be a full [Tutorial +Book](https://rust-console.github.io/gba/) that goes along with this crate. +However, currently the development focus is leaning towards having minimal +coverage of all the parts of the GBA. Until that's done, unfortunately the book +will be in a rather messy state. ## First Time Setup Writing a Rust program for the GBA requires a fair amount of special setup. All -of the steps are detailed for you [in the Introduction chapter of the -book](https://rust-console.github.io/gba/00-introduction/03-development-setup.html). +of the steps are detailed for you in the [Development +Setup](https://rust-console.github.io/gba/development-setup.html) part at the +start of the book. If you've done the described global setup once before and just want to get a new project started quickly we got you covered: diff --git a/book/book.toml b/book/book.toml index 4088ba4..69085ec 100644 --- a/book/book.toml +++ b/book/book.toml @@ -3,5 +3,5 @@ title = "Rust GBA Guide" authors = ["Lokathor"] [build] -build-dir = "../docs" +build-dir = "../target/book-output" create-missing = true diff --git a/book/src/02-concepts/00-index.md b/book/src-bak/00-concepts-index.md similarity index 100% rename from book/src/02-concepts/00-index.md rename to book/src-bak/00-concepts-index.md diff --git a/book/src/00-introduction/00-index.md b/book/src-bak/00-introduction-index.md similarity index 100% rename from book/src/00-introduction/00-index.md rename to book/src-bak/00-introduction-index.md diff --git a/book/src/04-non-video/00-index.md b/book/src-bak/00-non-video-index.md similarity index 100% rename from book/src/04-non-video/00-index.md rename to book/src-bak/00-non-video-index.md diff --git a/book/src/01-quirks/00-index.md b/book/src-bak/00-quirks-index.md similarity index 100% rename from book/src/01-quirks/00-index.md rename to book/src-bak/00-quirks-index.md diff --git a/book/src/03-video/00-index.md b/book/src-bak/00-video-index.md similarity index 100% rename from book/src/03-video/00-index.md rename to book/src-bak/00-video-index.md diff --git a/book/src/04-non-video/01-buttons.md b/book/src-bak/01-buttons.md similarity index 100% rename from book/src/04-non-video/01-buttons.md rename to book/src-bak/01-buttons.md diff --git a/book/src/02-concepts/01-cpu.md b/book/src-bak/01-cpu.md similarity index 100% rename from book/src/02-concepts/01-cpu.md rename to book/src-bak/01-cpu.md diff --git a/book/src/01-quirks/01-no_std.md b/book/src-bak/01-no_std.md similarity index 100% rename from book/src/01-quirks/01-no_std.md rename to book/src-bak/01-no_std.md diff --git a/book/src/00-introduction/01-requirements.md b/book/src-bak/01-requirements.md similarity index 100% rename from book/src/00-introduction/01-requirements.md rename to book/src-bak/01-requirements.md diff --git a/book/src/03-video/01-rgb15.md b/book/src-bak/01-rgb15.md similarity index 100% rename from book/src/03-video/01-rgb15.md rename to book/src-bak/01-rgb15.md diff --git a/book/src/02-concepts/02-bios.md b/book/src-bak/02-bios.md similarity index 100% rename from book/src/02-concepts/02-bios.md rename to book/src-bak/02-bios.md diff --git a/book/src/01-quirks/02-fixed_only.md b/book/src-bak/02-fixed_only.md similarity index 100% rename from book/src/01-quirks/02-fixed_only.md rename to book/src-bak/02-fixed_only.md diff --git a/book/src/00-introduction/02-goals_and_style.md b/book/src-bak/02-goals_and_style.md similarity index 100% rename from book/src/00-introduction/02-goals_and_style.md rename to book/src-bak/02-goals_and_style.md diff --git a/book/src/04-non-video/02-timers.md b/book/src-bak/02-timers.md similarity index 100% rename from book/src/04-non-video/02-timers.md rename to book/src-bak/02-timers.md diff --git a/book/src/04-non-video/03-dma.md b/book/src-bak/03-dma.md similarity index 100% rename from book/src/04-non-video/03-dma.md rename to book/src-bak/03-dma.md diff --git a/book/src/01-quirks/03-volatile_destination.md b/book/src-bak/03-volatile_destination.md similarity index 100% rename from book/src/01-quirks/03-volatile_destination.md rename to book/src-bak/03-volatile_destination.md diff --git a/book/src/02-concepts/03-wram.md b/book/src-bak/03-wram.md similarity index 100% rename from book/src/02-concepts/03-wram.md rename to book/src-bak/03-wram.md diff --git a/book/src/02-concepts/04-io-registers.md b/book/src-bak/04-io-registers.md similarity index 100% rename from book/src/02-concepts/04-io-registers.md rename to book/src-bak/04-io-registers.md diff --git a/book/src/01-quirks/04-newtype.md b/book/src-bak/04-newtype.md similarity index 100% rename from book/src/01-quirks/04-newtype.md rename to book/src-bak/04-newtype.md diff --git a/book/src/04-non-video/04-sound.md b/book/src-bak/04-sound.md similarity index 100% rename from book/src/04-non-video/04-sound.md rename to book/src-bak/04-sound.md diff --git a/book/src/01-quirks/05-const_asserts.md b/book/src-bak/05-const_asserts.md similarity index 100% rename from book/src/01-quirks/05-const_asserts.md rename to book/src-bak/05-const_asserts.md diff --git a/book/src/00-introduction/05-help_and_resources.md b/book/src-bak/05-help_and_resources.md similarity index 100% rename from book/src/00-introduction/05-help_and_resources.md rename to book/src-bak/05-help_and_resources.md diff --git a/book/src/04-non-video/05-interrupts.md b/book/src-bak/05-interrupts.md similarity index 100% rename from book/src/04-non-video/05-interrupts.md rename to book/src-bak/05-interrupts.md diff --git a/book/src/02-concepts/05-palram.md b/book/src-bak/05-palram.md similarity index 100% rename from book/src/02-concepts/05-palram.md rename to book/src-bak/05-palram.md diff --git a/book/src/04-non-video/06-link_cable.md b/book/src-bak/06-link_cable.md similarity index 100% rename from book/src/04-non-video/06-link_cable.md rename to book/src-bak/06-link_cable.md diff --git a/book/src/02-concepts/06-vram.md b/book/src-bak/06-vram.md similarity index 100% rename from book/src/02-concepts/06-vram.md rename to book/src-bak/06-vram.md diff --git a/book/src/04-non-video/07-game_pak.md b/book/src-bak/07-game_pak.md similarity index 100% rename from book/src/04-non-video/07-game_pak.md rename to book/src-bak/07-game_pak.md diff --git a/book/src/02-concepts/07-oam.md b/book/src-bak/07-oam.md similarity index 100% rename from book/src/02-concepts/07-oam.md rename to book/src-bak/07-oam.md diff --git a/book/src/02-concepts/08-rom.md b/book/src-bak/08-rom.md similarity index 100% rename from book/src/02-concepts/08-rom.md rename to book/src-bak/08-rom.md diff --git a/book/src/02-concepts/09-sram.md b/book/src-bak/09-sram.md similarity index 100% rename from book/src/02-concepts/09-sram.md rename to book/src-bak/09-sram.md diff --git a/book/src-bak/ch03/gba_prng.md b/book/src-bak/gba_prng.md similarity index 100% rename from book/src-bak/ch03/gba_prng.md rename to book/src-bak/gba_prng.md diff --git a/book/src-bak/ch03/index.md b/book/src-bak/index.md similarity index 100% rename from book/src-bak/ch03/index.md rename to book/src-bak/index.md diff --git a/book/src-bak/ch01/io_registers.md b/book/src-bak/io_registers.md similarity index 100% rename from book/src-bak/ch01/io_registers.md rename to book/src-bak/io_registers.md diff --git a/book/src-bak/ch02/light_cycle.md b/book/src-bak/light_cycle.md similarity index 100% rename from book/src-bak/ch02/light_cycle.md rename to book/src-bak/light_cycle.md diff --git a/book/src-bak/ch03/memory_game.md b/book/src-bak/memory_game.md similarity index 100% rename from book/src-bak/ch03/memory_game.md rename to book/src-bak/memory_game.md diff --git a/book/src-bak/ch03/obj_memory_2d1d.jpg b/book/src-bak/obj_memory_2d1d.jpg similarity index 100% rename from book/src-bak/ch03/obj_memory_2d1d.jpg rename to book/src-bak/obj_memory_2d1d.jpg diff --git a/book/src-bak/ch03/regular_backgrounds.md b/book/src-bak/regular_backgrounds.md similarity index 100% rename from book/src-bak/ch03/regular_backgrounds.md rename to book/src-bak/regular_backgrounds.md diff --git a/book/src-bak/ch03/regular_objects.md b/book/src-bak/regular_objects.md similarity index 100% rename from book/src-bak/ch03/regular_objects.md rename to book/src-bak/regular_objects.md diff --git a/book/src-bak/ch03/screenshot_checkers.png b/book/src-bak/screenshot_checkers.png similarity index 100% rename from book/src-bak/ch03/screenshot_checkers.png rename to book/src-bak/screenshot_checkers.png diff --git a/book/src-bak/ch01/the_display_control_register.md b/book/src-bak/the_display_control_register.md similarity index 100% rename from book/src-bak/ch01/the_display_control_register.md rename to book/src-bak/the_display_control_register.md diff --git a/book/src-bak/ch02/the_key_input_register.md b/book/src-bak/the_key_input_register.md similarity index 100% rename from book/src-bak/ch02/the_key_input_register.md rename to book/src-bak/the_key_input_register.md diff --git a/book/src-bak/ch02/the_vcount_register.md b/book/src-bak/the_vcount_register.md similarity index 100% rename from book/src-bak/ch02/the_vcount_register.md rename to book/src-bak/the_vcount_register.md diff --git a/book/src-bak/ch03/tile_data.md b/book/src-bak/tile_data.md similarity index 100% rename from book/src-bak/ch03/tile_data.md rename to book/src-bak/tile_data.md diff --git a/book/src-bak/ch01/video_memory_intro.md b/book/src-bak/video_memory_intro.md similarity index 100% rename from book/src-bak/ch01/video_memory_intro.md rename to book/src-bak/video_memory_intro.md diff --git a/book/src/00-introduction/04-hello-magic.md b/book/src/00-introduction/04-hello-magic.md deleted file mode 100644 index 5d8a679..0000000 --- a/book/src/00-introduction/04-hello-magic.md +++ /dev/null @@ -1,52 +0,0 @@ -# Hello, Magic - -So we know all the steps to build our source, we just need some source. - -We're beginners, so we'll start small. With normal programming there's usually a -console available, so the minimal program prints "Hello, world" to the terminal. -On a GBA we don't have a terminal and standard out and all that, so the minimal -program draws a red, blue, and green dot to the screen. - -At the lowest level of device programming, it's all [Magic -Numbers](https://en.wikipedia.org/wiki/Magic_number_(programming)). You write -special values to special places and then the hardware does something. A clear -API makes every magic number and magic location easy to understand. A clear _and -good_ API also prevents you from using the wrong magic number in the wrong place -and causing problems for yourself. - -This is the minimal example to just test that our build system is all set, so -just this once we'll go _full_ magic number crazy town, for fun. Ready? Here -goes: - -`hello_magic.rs`: - -```rust -#![no_std] -#![feature(start)] - -#[panic_handler] -fn panic(_info: &core::panic::PanicInfo) -> ! { - loop {} -} - -#[start] -fn main(_argc: isize, _argv: *const *const u8) -> isize { - unsafe { - (0x400_0000 as *mut u16).write_volatile(0x0403); - (0x600_0000 as *mut u16).offset(120 + 80 * 240).write_volatile(0x001F); - (0x600_0000 as *mut u16).offset(136 + 80 * 240).write_volatile(0x03E0); - (0x600_0000 as *mut u16).offset(120 + 96 * 240).write_volatile(0x7C00); - loop {} - } -} -``` - -Throw that into your project skeleton, build the program, and give it a run. You -should see a red, green, and blue dot close-ish to the middle of the screen. If -you don't, something _already_ went wrong. Double check things, phone a friend, -write your senators, try asking `Lokathor` or `Ketsuban` on the [Rust Community -Discord](https://discordapp.com/invite/aVESxV8), until you're eventually able to -get your three dots going. - -Of course, I'm sure you want to know why those numbers are the numbers to use. -Well that's what the whole rest of the book is about! diff --git a/book/src/03-video/TODO.md b/book/src/03-video/TODO.md deleted file mode 100644 index 4640904..0000000 --- a/book/src/03-video/TODO.md +++ /dev/null @@ -1 +0,0 @@ -# TODO diff --git a/book/src/05-examples/00-index.md b/book/src/05-examples/00-index.md deleted file mode 100644 index df635b4..0000000 --- a/book/src/05-examples/00-index.md +++ /dev/null @@ -1 +0,0 @@ -# Examples diff --git a/book/src/SUMMARY.md b/book/src/SUMMARY.md index a697feb..153ef29 100644 --- a/book/src/SUMMARY.md +++ b/book/src/SUMMARY.md @@ -1,37 +1,5 @@ # Rust GBA Guide -* [Introduction](00-introduction/00-index.md) - * [Reader Requirements](00-introduction/01-requirements.md) - * [Book Goals and Style](00-introduction/02-goals_and_style.md) - * [Development Setup](00-introduction/03-development-setup.md) - * [Hello, Magic](00-introduction/04-hello-magic.md) - * [Help and Resources](00-introduction/05-help_and_resources.md) -* [Quirks](01-quirks/00-index.md) - * [No Std](01-quirks/01-no_std.md) - * [Fixed Only](01-quirks/02-fixed_only.md) - * [Volatile Destination](01-quirks/03-volatile_destination.md) - * [Newtype](01-quirks/04-newtype.md) - * [Const Asserts](01-quirks/05-const_asserts.md) -* [Concepts](02-concepts/00-index.md) - * [CPU](02-concepts/01-cpu.md) - * [BIOS](02-concepts/02-bios.md) - * [Work RAM](02-concepts/03-wram.md) - * [IO Registers](02-concepts/04-io-registers.md) - * [Palette RAM](02-concepts/05-palram.md) - * [Video RAM](02-concepts/06-vram.md) - * [Object Attribute Memory](02-concepts/07-oam.md) - * [Game Pak ROM / Flash ROM](02-concepts/08-rom.md) - * [Save RAM](02-concepts/09-sram.md) -* [Video](03-video/00-index.md) - * [RBG15 Color](03-video/01-rgb15.md) - * [TODO](03-video/TODO.md) -* [Non-Video](04-non-video/00-index.md) - * [Buttons](04-non-video/01-buttons.md) - * [Timers](04-non-video/02-timers.md) - * [Direct Memory Access](04-non-video/03-dma.md) - * [Sound](04-non-video/04-sound.md) - * [Interrupts](04-non-video/05-interrupts.md) - * [Link Cable](04-non-video/06-link_cable.md) - * [Game Pak](04-non-video/07-game_pak.md) -* [Examples](05-examples/00-index.md) +* [Development Setup](development-setup.md) +* [GBA Assembly](gba-asm.md) diff --git a/book/src/00-introduction/03-development-setup.md b/book/src/development-setup.md similarity index 86% rename from book/src/00-introduction/03-development-setup.md rename to book/src/development-setup.md index 26c80f0..f84c387 100644 --- a/book/src/00-introduction/03-development-setup.md +++ b/book/src/development-setup.md @@ -141,3 +141,42 @@ And you're _finally_ done! Of course, you probably want to make a script for all that, but it's up to you. On our own project we have it mostly set up within a `Makefile.toml` which runs using the [cargo-make](https://github.com/sagiegurari/cargo-make) plugin. + +## Checking Your Setup + +As I said, you need some source code to compile just to check that your +compilation pipeline is working. Here's a sample file that just puts three dots +on the screen without depending on any crates or anything at all. + +`hello_magic.rs`: + +```rust +#![no_std] +#![feature(start)] + +#[panic_handler] +fn panic(_info: &core::panic::PanicInfo) -> ! { + loop {} +} + +#[start] +fn main(_argc: isize, _argv: *const *const u8) -> isize { + unsafe { + (0x400_0000 as *mut u16).write_volatile(0x0403); + (0x600_0000 as *mut u16).offset(120 + 80 * 240).write_volatile(0x001F); + (0x600_0000 as *mut u16).offset(136 + 80 * 240).write_volatile(0x03E0); + (0x600_0000 as *mut u16).offset(120 + 96 * 240).write_volatile(0x7C00); + loop {} + } +} +``` + +Throw that into your project skeleton, build the program, and give it a run. You +should see a red, green, and blue dot close-ish to the middle of the screen. If +you don't, something _already_ went wrong. Double check things, phone a friend, +write your senators, try asking `Lokathor` or `Ketsuban` on the [Rust Community +Discord](https://discordapp.com/invite/aVESxV8), until you're eventually able to +get your three dots going. + +Of course, I'm sure you want to know why those numbers are the numbers to use. +Well that's what the whole rest of the book is about! diff --git a/book/src/gba-asm.md b/book/src/gba-asm.md new file mode 100644 index 0000000..9558853 --- /dev/null +++ b/book/src/gba-asm.md @@ -0,0 +1,112 @@ +# GBA Assembly + +On the GBA sometimes you just end up using assembly. Not a whole lot, but +sometimes. Accordingly, you should know how assembly works on the GBA. + +* The [ARM Infocenter: + ARM7TDMI](http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0210c/index.html) + is the basic authority for reference information. The GBA has a CPU with the + `ARMv4` ISA, the `ARMv4T` variant, and specifically the `ARM7TDMI` + microarchitecture. Someone at ARM decided that having both `ARM#` and `ARMv#` + was a good way to [version things](https://en.wikichip.org/wiki/arm/versions), + even when the numbers don't match. The rest of us have been sad ever since. + The link there will take you to the correct book specific to the GBA's + microarchitecture. There's a whole big pile of ARM books available within the + ARM Infocenter, so if you just google it or whatever make sure you end up + looking at the correct one. Note that there is also a [PDF + Version](http://infocenter.arm.com/help/topic/com.arm.doc.ddi0210c/DDI0210B.pdf) + of the documentation available, if you'd like that. + +* The [GBATek: ARM CPU + Overview](https://problemkaputt.de/gbatek.htm#armcpuoverview) also has quite a + bit of info. Some of it is a duplication of what you'd find in the ARM + Infocenter reference manual. Some of it is specific to the GBA's chip. Some of + it is specific to the ARM chips within the DS and DSi. It's a bit of a jumbled + mess, and as with the rest of GBATEK, the explanations are in a "sparse" style + (to put it nicely), so I wouldn't take it as your only source. + +* The [Compiler Explorer](https://rust.godbolt.org/z/ndCnk3) can be used to + quickly look at assembly versions of your Rust code. That link there will load + up an essentially blank `no_std` file with `opt-level=3` set and targeting + `thumbv6m-none-eabi`. That's _not_ the same target as the GBA (it's two ISA + revisions later, ARMv6 instead of ARMv4), but it's the closest CPU target that + is bundled with rustc, so it's the closest you can get with the compiler + explorer website. If you're very dedicated I suppose you could setup a [local + instance](https://github.com/mattgodbolt/compiler-explorer#running-a-local-instance) + of compiler explorer and then add the extra target definition and so on, but + that's _probably_ overkill. + +## ARM and Thumb + +The "T" part in `ARMv4T` and `ARM7TDMI` means "Thumb". An ARM chip that supports +Thumb has two different instruction sets instead of just one. The chip can run +in ARM state with 32-bit instructions, or it can run in Thumb state with 16-bit +instructions. Note that the CPU _state_ (ARM or Thumb) is distinct from the +_mode_ (User, FIQ, IRQ, etc). Apparently these states are sometimes called +`a32` and `t32` in a more modern context, but I will stick with ARM and Thumb +because that's what the official ARM7TDMI manual and GBATEK both use. + +On the GBA, the memory bus that physically transfers data from the cartridge into +the device is a 16-bit memory bus. This means that if you need to transfer more +than 16 bits at a time you have to do more than one transfer. Since we'd like +our instructions to get to the CPU as fast as possible, we compile the majority +of our program with the Thumb instruction set. The ARM reference says that with +Thumb instructions on a 16-bit memory bus system you get about 160% performance +compared to using ARM instructions. That's absolutely something we want to take +advantage of. Also, your Thumb compiled code is about 65% of the same code +compiled with ARM. Since a game ROM can only be 32MB total, and we're trying to +fit in images and sound too, we want to get space savings where we can. + +You may wonder, why is the Thumb code 65% as large if the instructions +themselves are 50% as large, and why have ARM state at all if there's such a +benefit to be had with Thumb? Well, Thumb state doesn't support as many different +instructions as ARM state does. Some lines of source code that can compile to a +single ARM instruction might need to compile into more than one Thumb +instruction. Thumb still has most of the really good instructions available, so +it all averages out to about 65%. + +That said, some parts of a GBA program _must_ be written for ARM state. Also, +ARM state does allow that increased instruction flexibility. So we _need_ to use +ARM some of the time, and we might just _want_ to use ARM even when we don't +need to at other times. It is possible to switch states on the fly, there's +extremely minimal overhead, even less than doing some function calls. The only +problem is the 16-bit memory bus of the cartridge giving us a needless speed +penalty with our ARM code. The CPU _executes_ the ARM instructions at full +speed, but then it has to wait while more instructions get sent in. What do we +do? Well, code is ultimately just a different kind of data. We can copy parts of +our code off the cartridge ROM and place it into a part of the RAM that has a +32-bit memory bus. Then the CPU can execute the code from there, going at full +speed. Of course, there's only a very small amount of RAM compared to the size +of a cartridge, so we'll only do this with a few select functions. Exactly which +functions will probably depend on your game. + +There's two problems that we face as Rust programmers: + +1) Rust offers no way to specify individual functions as being ARM or Thumb. The + whole program is compiled for one state or the other. Obviously this is no + good, so it's on the [2019 embedded + wishlist](https://github.com/rust-embedded/wg/issues/256#issuecomment-439677804), + and perhaps a fix will come. + +2) Rust offers no way to get a pointer to a function as well as the length of + the compiled function, so we can't copy a function from the ROM to some other + location because we can't even express statements about the function's data. + I also put this [on the + wishlist](https://github.com/rust-embedded/wg/issues/256#issuecomment-450539836), + but honestly I have much less hope that this becomes a part of rust. + +What this ultimately means is that some parts of our program have to be written +in external assembly files and then added to the program with the linker. We +were already going to write some assembly, and we already use more than one file +in our project all the time, those parts aren't a big problem. The big problem +is that using custom linker scripts to get assembly code into our final program +isn't transitive between crates. + +What I mean is that once we have a file full of custom assembly that we're +linking in by hand, that's not "part of" the crate any more. At least not as +`cargo` sees it. So we can't just upload it to `crates.io` and then depend on it +in other projects and have `cargo` download the right version and and include it +all automatically. We're back to fully manually copying files from the old +project into the new one, adding more lines to the linker script each time we +split up a new assembly file, all that stuff. Like the stone age. Sometimes ya +gotta suffer for your art. diff --git a/docs/.nojekyll b/docs/.nojekyll deleted file mode 100644 index 8631215..0000000 --- a/docs/.nojekyll +++ /dev/null @@ -1 +0,0 @@ -This file makes sure that Github Pages doesn't process mdBook's output. \ No newline at end of file diff --git a/docs/00-introduction/00-index.html b/docs/00-introduction/00-index.html deleted file mode 100644 index 60facd5..0000000 --- a/docs/00-introduction/00-index.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - Introduction - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Introduction

-

This is the book for learning how to write GameBoy Advance (GBA) games in Rust.

-

I'm Lokathor, the main author of the book. There's also Ketsuban who -provides the technical advisement, reviews the PRs, and keeps my crazy in check.

-

The book is a work in progress, as you can see if you actually try to open many -of the pages listed in the Table Of Contents.

-

Feedback

-

It's very often hard to tell when you've explained something properly. In the -same way that your brain will read over small misspellings and correct things -into the right word, if an explanation for something you already understand -accidentally skips over some small detail then your brain can fill in the gaps -without you realizing it.

-

Please, if things don't make sense then file an -issue about it so I know where -things need to improve.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/00-introduction/01-requirements.html b/docs/00-introduction/01-requirements.html deleted file mode 100644 index 7cb449c..0000000 --- a/docs/00-introduction/01-requirements.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - Reader Requirements - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Reader Requirements

-

This book naturally assumes that you've already read Rust's core book:

- -

Now, I know it sounds silly to say "if you wanna program Rust on this old -video game system you should already know how to program Rust", but the more -people I meet and chat with the more they tell me that they jumped into Rust -without reading any or all of the book. You know who you are.

-

Please, read the whole book!

-

In addition to the core book, there's also an expansion book that I will declare -to be required reading for this:

- -

The Rustonomicon is all about trying to demystify unsafe. We'll end up using a -fair bit of unsafe code as a natural consequence of doing direct hardware -manipulations. Using unsafe is like swinging a -sword, -you should start slowly, practice carefully, and always pay attention no matter -how experienced you think you've become.

-

That said, it's sometimes a necessary -tool to get the job done, so you -have to break out of the borderline pathological fear of using it that most rust -programmers tend to have.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/00-introduction/02-goals_and_style.html b/docs/00-introduction/02-goals_and_style.html deleted file mode 100644 index 15a824f..0000000 --- a/docs/00-introduction/02-goals_and_style.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - Book Goals and Style - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Book Goals and Style

-

So, what's this book actually gonna teach you?

-

My goal is certainly not just showing off the crate. Programming for the GBA is -weird enough that I'm trying to teach you all the rest of the stuff you need to -know along the way. If I do my job right then you'd be able to write your own -crate for GBA stuff just how you think it should all go by the end.

-

Overall the book is sorted more for easy review once you're trying to program -something. The GBA has a few things that can stand on their own and many other -things are a mass of interconnected concepts, so some parts of the book end up -having to refer you to portions that you haven't read yet. The chapters and -sections are sorted so that minimal future references are required, but it's -unavoidable that it'll happen sometimes.

-

The actual "tutorial order" of the book is the -Examples chapter. Each section of that chapter -breaks down one of the provided examples in the examples -directory of the -repository. We go over what sections of the book you'll need to have read for -the example code to make sense, and also how we apply the general concepts -described in the book to the specific example cases.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/00-introduction/03-development-setup.html b/docs/00-introduction/03-development-setup.html deleted file mode 100644 index 698264b..0000000 --- a/docs/00-introduction/03-development-setup.html +++ /dev/null @@ -1,349 +0,0 @@ - - - - - - Development Setup - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Development Setup

-

Before you can build a GBA game you'll have to follow some special steps to -setup the development environment.

-

Once again, extra special thanks to Ketsuban, who first dove into how to -make this all work with rust and then shared it with the world.

-

Per System Setup

-

Obviously you need your computer to have a working rust -installation. However, you'll also need to ensure that -you're using a nightly toolchain (we will need it for inline assembly, among -other potential useful features). You can run rustup default nightly to set -nightly as the system wide default toolchain, or you can use a toolchain -file to use -nightly just on a specific project, but either way we'll be assuming the use of -nightly from now on. You'll also need the rust-src component so that -cargo-xbuild will be able to compile the core crate for us in a bit, so run -rustup component add rust-src.

-

Next, you need devkitpro. They've -got a graphical installer for Windows that runs nicely, and I guess pacman -support on Linux (I'm on Windows so I haven't tried the Linux install myself). -We'll be using a few of their general binutils for the arm-none-eabi target, -and we'll also be using some of their tools that are specific to GBA -development, so even if you already have the right binutils for whatever -reason, you'll still want devkitpro for the gbafix utility.

-
    -
  • On Windows you'll want something like C:\devkitpro\devkitARM\bin and -C:\devkitpro\tools\bin to be added to your -PATH, depending on where you -installed it to and such.
  • -
  • On Linux you can use pacman to get it, and the default install puts the stuff -in /opt/devkitpro/devkitARM/bin and /opt/devkitpro/tools/bin. If you need -help you can look in our repository's -.travis.yml -file to see exactly what our CI does.
  • -
-

Finally, you'll need cargo-xbuild. Just run cargo install cargo-xbuild and -cargo will figure it all out for you.

-

Per Project Setup

-

Once the system wide tools are ready, you'll need some particular files each -time you want to start a new project. You can find them in the root of the -rust-console/gba repo.

-
    -
  • thumbv4-none-agb.json describes the overall GBA to cargo-xbuild (and LLVM) -so it knows what to do. Technically the GBA is thumbv4-none-eabi, but we -change the eabi to agb so that we can distinguish it from other eabi -devices when using cfg flags.
  • -
  • crt0.s describes some ASM startup stuff. If you have more ASM to place here -later on this is where you can put it. You also need to build it into a -crt0.o file before it can actually be used, but we'll cover that below.
  • -
  • linker.ld tells the linker all the critical info about the layout -expectations that the GBA has about our program, and that it should also -include the crt0.o file with our compiled rust code.
  • -
-

Compiling

-

Once all the tools are in place, there's particular steps that you need to -compile the project. For these to work you'll need some source code to compile. -Unlike with other things, an empty main file and/or an empty lib file will cause -a total build failure, because we'll need a -no_std build, and rust -defaults to builds that use the standard library. The next section has a minimal -example file you can use (along with explanation), but we'll describe the build -steps here.

-
    -
  • -

    arm-none-eabi-as crt0.s -o target/crt0.o

    -
      -
    • This builds your text format crt0.s file into object format crt0.o -that's placed in the target/ directory. Note that if the target/ -directory doesn't exist yet it will fail, so you have to make the directory -if it's not there. You don't need to rebuild crt0.s every single time, -only when it changes, but you might as well throw a line to do it every time -into your build script so that you never forget because it's a practically -instant operation anyway.
    • -
    -
  • -
  • -

    cargo xbuild --target thumbv4-none-agb.json

    -
      -
    • This builds your Rust source. It accepts most of the normal options, such -as --release, and options, such as --bin foo or --examples, that you'd -expect cargo to accept.
    • -
    • You can not build and run tests this way, because they require std, -which the GBA doesn't have. If you want you can still run some of your -project's tests with cargo test --lib or similar, but that builds for your -local machine, so anything specific to the GBA (such as reading and writing -registers) won't be testable that way. If you want to isolate and try out -some piece code running on the GBA you'll unfortunately have to make a demo -for it in your examples/ directory and then run the demo in an emulator -and see if it does what you expect.
    • -
    • The file extension is important! It will work if you forget it, but cargo xbuild takes the inclusion of the extension as a flag to also compile -dependencies with the same sysroot, so you can include other crates in your -build. Well, crates that work in the GBA's limited environment, but you get -the idea.
    • -
    -
  • -
-

At this point you have an ELF binary that some emulators can execute directly -(more on that later). However, if you want a "real" ROM that works in all -emulators and that you could transfer to a flash cart to play on real hardware -there's a little more to do.

-
    -
  • -

    arm-none-eabi-objcopy -O binary target/thumbv4-none-agb/MODE/BIN_NAME target/ROM_NAME.gba

    -
      -
    • This will perform an objcopy on our -program. Here I've named the program arm-none-eabi-objcopy, which is what -devkitpro calls their version of objcopy that's specific to the GBA in the -Windows install. If the program isn't found under that name, have a look in -your installation directory to see if it's under a slightly different name -or something.
    • -
    • As you can see from reading the man page, the -O binary option takes our -lovely ELF file with symbols and all that and strips it down to basically a -bare memory dump of the program.
    • -
    • The next argument is the input file. You might not be familiar with how -cargo arranges stuff in the target/ directory, and between RLS and -cargo doc and stuff it gets kinda crowded, so it goes like this: -
        -
      • Since our program was built for a non-local target, first we've got a -directory named for that target, thumbv4-none-agb/
      • -
      • Next, the "MODE" is either debug/ or release/, depending on if we had -the --release flag included. You'll probably only be packing release -mode programs all the way into GBA roms, but it works with either mode.
      • -
      • Finally, the name of the program. If your program is something out of the -project's src/bin/ then it'll be that file's name, or whatever name you -configured for the bin in the Cargo.toml file. If your program is -something out of the project's examples/ directory there will be a -similar examples/ sub-directory first, and then the example's name.
      • -
      -
    • -
    • The final argument is the output of the objcopy, which I suggest putting -at just the top level of the target/ directory. Really it could go -anywhere, but if you're using git then it's likely that your .gitignore -file is already setup to exclude everything in target/, so this makes sure -that your intermediate game builds don't get checked into your git.
    • -
    -
  • -
  • -

    gbafix target/ROM_NAME.gba

    -
      -
    • The gbafix tool also comes from devkitpro. The GBA is very picky about a -ROM's format, and gbafix patches the ROM's header and such so that it'll -work right. Unlike objcopy, this tool is custom built for GBA development, -so it works just perfectly without any arguments beyond the file name. The -ROM is patched in place, so we don't even need to specify a new destination.
    • -
    -
  • -
-

And you're finally done!

-

Of course, you probably want to make a script for all that, but it's up to you. -On our own project we have it mostly set up within a Makefile.toml which runs -using the cargo-make plugin.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/00-introduction/04-hello-magic.html b/docs/00-introduction/04-hello-magic.html deleted file mode 100644 index 02cc185..0000000 --- a/docs/00-introduction/04-hello-magic.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - Hello, Magic - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Hello, Magic

-

So we know all the steps to build our source, we just need some source.

-

We're beginners, so we'll start small. With normal programming there's usually a -console available, so the minimal program prints "Hello, world" to the terminal. -On a GBA we don't have a terminal and standard out and all that, so the minimal -program draws a red, blue, and green dot to the screen.

-

At the lowest level of device programming, it's all Magic -Numbers. You write -special values to special places and then the hardware does something. A clear -API makes every magic number and magic location easy to understand. A clear and -good API also prevents you from using the wrong magic number in the wrong place -and causing problems for yourself.

-

This is the minimal example to just test that our build system is all set, so -just this once we'll go full magic number crazy town, for fun. Ready? Here -goes:

-

hello_magic.rs:

-
#![no_std]
-#![feature(start)]
-
-#[panic_handler]
-fn panic(_info: &core::panic::PanicInfo) -> ! {
-  loop {}
-}
-
-#[start]
-fn main(_argc: isize, _argv: *const *const u8) -> isize {
-  unsafe {
-    (0x400_0000 as *mut u16).write_volatile(0x0403);
-    (0x600_0000 as *mut u16).offset(120 + 80 * 240).write_volatile(0x001F);
-    (0x600_0000 as *mut u16).offset(136 + 80 * 240).write_volatile(0x03E0);
-    (0x600_0000 as *mut u16).offset(120 + 96 * 240).write_volatile(0x7C00);
-    loop {}
-  }
-}
-
-

Throw that into your project skeleton, build the program, and give it a run. You -should see a red, green, and blue dot close-ish to the middle of the screen. If -you don't, something already went wrong. Double check things, phone a friend, -write your senators, try asking Lokathor or Ketsuban on the Rust Community -Discord, until you're eventually able to -get your three dots going.

-

Of course, I'm sure you want to know why those numbers are the numbers to use. -Well that's what the whole rest of the book is about!

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/00-introduction/05-help_and_resources.html b/docs/00-introduction/05-help_and_resources.html deleted file mode 100644 index 3e4012a..0000000 --- a/docs/00-introduction/05-help_and_resources.html +++ /dev/null @@ -1,263 +0,0 @@ - - - - - - Help and Resources - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Help and Resources

-

Help

-

So you're stuck on a problem and the book doesn't say what to do. Where can you -find out more?

-

The first place I would suggest is the Rust Community -Discord. If it's a general Rust question -then you can ask anyone in any channel you feel is appropriate. If it's GBA -specific then you can try asking me (Lokathor) or Ketsuban in the #gamedev -channel.

-

Emulators

-

You certainly might want to eventually write a game that you can put on a flash -cart and play on real hardware, but for most of your development you'll probably -want to be using an emulator for testing, because you don't have to fiddle with -cables and all that.

-

In terms of emulators, you want to be using -mGBA, and you want to be using the 0.7 Beta -1 or later. This update -lets you run raw ELF files, which means that you can have full debug symbols -available while you're debugging problems.

-

Information Resources

-

First, if I fail to describe something related to Rust, you can always try -checking in The Rust -Reference to see -if they cover it. You can mostly ignore that big scary red banner at the top, -things are a lot better documented than they make it sound.

-

If you need help trying to fiddle your math down as hard as you can, there are -resources such as the Bit Twiddling -Hacks page.

-

As to GBA related lore, Ketsuban and I didn't magically learn this all from -nowhere, we read various technical manuals and guides ourselves and then -distilled those works oriented around C and C++ into a book for Rust.

-

We have personally used some or all of the following:

-
    -
  • GBATEK: This is the resource. It -covers not only the GBA, but also the DS and DSi, and also a run down of ARM -assembly (32-bit and 16-bit opcodes). The link there is to the 2.9b version on -problemkaputt.de (the official home of the document), but if you just google -for gbatek the top result is for the 2.5 version on akkit.org, so make sure -you're looking at the newest version. Sometimes problemkaputt.de is a little -sluggish so I've also mirrored the 2.9b -version on my own site as well. GBATEK is rather large, over 2mb of text, so -if you're on a phone or similar you might want to save an offline copy to go -easy on your data usage.
  • -
  • TONC: While GBATEK is basically just a -huge tech specification, TONC is an actual guide on how to make sense of the -GBA's abilities and organize it into a game. It's written for C of course, but -as a Rust programmer you should always be practicing your ability to read C -code anyway. It's the programming equivalent of learning Latin because all the -old academic books are written in Latin.
  • -
  • CowBite: This is -more like GBATEK, and it's less complete, but it mixes in a little more -friendly explanation of things in between the hardware spec parts.
  • -
-

And I haven't had time to look at it myself, The Audio -Advance seems to be very good. It explains in depth -how you can get audio working on the GBA. Note that the table of contents for -each page goes along the top instead of down the side.

-

Non-Rust GBA Community

-

There's also the GBADev.org site, which has a forum -and everything. They're coding in C and C++, but you can probably overcome that -difference with a little work on your part.

-

I also found a place called -GBATemp, which -seems to have a more active forum but less of a focus on actual coding.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/01-quirks/00-index.html b/docs/01-quirks/00-index.html deleted file mode 100644 index 8195851..0000000 --- a/docs/01-quirks/00-index.html +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - Quirks - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Quirks

-

The GBA supports a lot of totally normal Rust code exactly like you'd think.

-

However, it also is missing a lot of what you might expect, and sometimes we -have to do things in slightly weird ways.

-

We start the book by covering the quirks our code will have, just to avoid too -many surprises later.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/01-quirks/01-no_std.html b/docs/01-quirks/01-no_std.html deleted file mode 100644 index 6a2d3f8..0000000 --- a/docs/01-quirks/01-no_std.html +++ /dev/null @@ -1,339 +0,0 @@ - - - - - - No Std - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

No Std

-

First up, as you already saw in the hello_magic code, we have to use the -#![no_std] outer attribute on our program when we target the GBA. You can find -some info about no_std in two official sources:

- -

The unstable book is borderline useless here because it's describing too many -things in too many words. The embedded book is much better, but still fairly -terse.

-

Bare Metal

-

The GBA falls under what the Embedded Book calls "Bare Metal Environments". -Basically, the machine powers on and immediately begins executing some ASM code. -Our ASM startup was provided by Ketsuban (check the crt0.s file). We'll go -over how it works much later on, for now it's enough to know that it does -work, and eventually control passes into Rust code.

-

On the rust code side of things, we determine our starting point with the -#[start] attribute on our main function. The main function also has a -specific type signature that's different from the usual main that you'd see in -Rust. I'd tell you to read the unstable-book entry on #[start] but they -literally -just tell you to look at the tracking issue for -it instead, and that's not very -helpful either. Basically it just has to be declared the way it is, even -though there's nothing passing in the arguments and there's no place that the -return value will go. The compiler won't accept it any other way.

-

No Standard Library

-

The Embedded Book tells us that we can't use the standard library, but we get -access to something called "libcore", which sounds kinda funny. What they're -talking about is just the core -crate, which is called libcore -within the rust repository for historical reasons.

-

The core crate is actually still a really big portion of Rust. The standard -library doesn't actually hold too much code (relatively speaking), instead it -just takes code form other crates and then re-exports it in an organized way. So -with just core instead of std, what are we missing?

-

In no particular order:

-
    -
  • Allocation
  • -
  • Clock
  • -
  • Network
  • -
  • File System
  • -
-

The allocation system and all the types that you can use if you have a global -allocator are neatly packaged up in the -alloc crate. The rest isn't as -nicely organized.

-

It's possible to implement a fair portion of the entire standard library -within a GBA context and make the rest just panic if you try to use it. However, -do you really need all that? Eh... probably not?

-
    -
  • We don't need a file system, because all of our data is just sitting there in -the ROM for us to use. When programming we can organize our const data into -modules and such to keep it organized, but once the game is compiled it's just -one huge flat address space. TODO: Parasyte says that a FS can be handy even -if it's all just ReadOnly, so we'll eventually talk about how you might set up -such a thing I guess, since we'll already be talking about replacements for -three of the other four things we "lost". Maybe we'll make Parasyte write that -section.
  • -
  • Networking, well, the GBA has a Link Cable you can use to communicate with -another GBA, but it's not really like a unix socket with TCP, so the standard -Rust networking isn't a very good match.
  • -
  • Clock is actually two different things at once. One is the ability to store -the time long term, which is a bit of hardware that some gamepaks have in them -(eg: pokemon ruby/sapphire/emerald). The GBA itself can't keep time while -power is off. However, the second part is just tracking time moment to moment, -which the GBA can totally do. We'll see how to access the timers soon enough.
  • -
-

Which just leaves us with allocation. Do we need an allocator? Depends on your -game. For demos and small games you probably don't need one. For bigger games -you'll maybe want to get an allocator going eventually. It's in some sense a -crutch, but it's a very useful one.

-

So I promise that at some point we'll cover how to get an allocator going. -Either a Rust Global Allocator (if practical), which would allow for a lot of -the standard library types to be used "for free" once it was set up, or just a -custom allocator that's GBA specific if Rust's global allocator style isn't a -good fit for the GBA (I honestly haven't looked into it).

-

Bare Metal Panic

-

If our code panics, we usually want to see that panic message. Unfortunately, -without a way to access something like stdout or stderr we've gotta do -something a little weirder.

-

If our program is running within the mGBA emulator, version 0.7 or later, we -can access a special set of addresses that allow us to send out CString -values, which then appear within a message log that you can check.

-

We can capture this behavior by making an MGBADebug type, and then implement -core::fmt::Write for that type. Once done, the write! macro will let us -target the mGBA debug output channel.

-

When used, it looks like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[panic_handler]
-fn panic(info: &core::panic::PanicInfo) -> ! {
-  use core::fmt::Write;
-  use gba::mgba::{MGBADebug, MGBADebugLevel};
-
-  if let Some(mut mgba) = MGBADebug::new() {
-    let _ = write!(mgba, "{}", info);
-    mgba.send(MGBADebugLevel::Fatal);
-  }
-  loop {}
-}
-#}
-

If you want to follow the particulars you can check the MGBADebug source in -the gba crate. Basically, there's one address you can use to try and activate -the debug output, and if it works you write your message into the "array" at -another address, and then finally write a send value to a third address. You'll -need to have read the volatile section for the -details to make sense.

-

LLVM Intrinsics

-

The above code will make your program fail to build in debug mode, saying that -__clzsi2 can't be found. This is a special builtin function that LLVM attempts -to use when there's no hardware version of an operation it wants to do (in this -case, counting the leading zeros). It's not actually necessary in this case, -which is why you only need it in debug mode. The higher optimization level of -release mode makes LLVM pre-compute more and fold more constants or whatever and -then it stops trying to call __clzsi2.

-

Unfortunately, sometimes a build will fail with a missing intrinsic even in -release mode.

-

If LLVM wants core to have that intrinsic then you're in -trouble, you'll have to send a PR to the -compiler-builtins -repository and hope to get it into rust itself.

-

If LLVM wants your code to have the intrinsic then you're in less trouble. You -can look up the details and then implement it yourself. It can go anywhere in -your program, as long as it has the right ABI and name. In the case of -__clzsi2 it takes a usize and returns a usize, so you'd write something -like:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[no_mangle]
-pub extern "C" fn __clzsi2(mut x: usize) -> usize {
-  //
-}
-#}
-

And so on for whatever other missing intrinsic.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/01-quirks/02-fixed_only.html b/docs/01-quirks/02-fixed_only.html deleted file mode 100644 index 35dfbc5..0000000 --- a/docs/01-quirks/02-fixed_only.html +++ /dev/null @@ -1,698 +0,0 @@ - - - - - - Fixed Only - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Fixed Only

-

In addition to not having much of the standard library available, we don't even -have a floating point unit available! We can't do floating point math in -hardware! We could still do floating point math as pure software computations -if we wanted, but that's a slow, slow thing to do.

-

Are there faster ways? It's the same answer as always: "Yes, but not without a -tradeoff."

-

The faster way is to represent fractional values using a system called a Fixed -Point Representation. -What do we trade away? Numeric range.

-
    -
  • Floating point math stores bits for base value and for exponent all according -to a single well defined standard -for how such a complicated thing works.
  • -
  • Fixed point math takes a normal integer (either signed or unsigned) and then -just "mentally associates" it (so to speak) with a fractional value for its -"units". If you have 3 and it's in units of 1/2, then you have 3/2, or 1.5 -using decimal notation. If your number is 256 and it's in units of 1/256th -then the value is 1.0 in decimal notation.
  • -
-

Floating point math requires dedicated hardware to perform quickly, but it can -"trade" precision when it needs to represent extremely large or small values.

-

Fixed point math is just integral math, which our GBA is reasonably good at, but -because your number is associated with a fixed fraction your results can get out -of range very easily.

-

Representing A Fixed Point Value

-

So we want to associate our numbers with a mental note of what units they're in:

-
    -
  • PhantomData -is a type that tells the compiler "please remember this extra type info" when -you add it as a field to a struct. It goes away at compile time, so it's -perfect for us to use as space for a note to ourselves without causing runtime -overhead.
  • -
  • The typenum crate is the best way to -represent a number within a type in Rust. Since our values on the GBA are -always specified as a number of fractional bits to count the number as, we can -put typenum types such as U8 or U14 into our PhantomData to keep track -of what's going on.
  • -
-

Now, those of you who know me, or perhaps just know my reputation, will of -course immediately question what happened to the real Lokathor. I do not care -for most crates, and I particularly don't care for using a crate in teaching -situations. However, typenum has a number of factors on its side that let me -suggest it in this situation:

-
    -
  • It's version 1.10 with a total of 21 versions and nearly 700k downloads, so we -can expect that the major troubles have been shaken out and that it will remain -fairly stable for quite some time to come.
  • -
  • It has no further dependencies that it's going to drag into the compilation.
  • -
  • It happens all at compile time, so it's not clogging up our actual game with -any nonsense.
  • -
  • The (interesting) subject of "how do you do math inside Rust's trait system?" is -totally separate from the concern that we're trying to focus on here.
  • -
-

Therefore, we will consider it acceptable to use this crate.

-

Now the typenum crate defines a whole lot, but we'll focus down to just a -single type at the moment: -UInt is a -type-level unsigned value. It's like u8 or u16, but while they're types that -then have values, each UInt construction statically equates to a specific -value. Like how the () type only has one value, which is also called (). In -this case, you wrap up UInt around smaller UInt values and a B1 or B0 -value to build up the binary number that you want at the type level.

-

In other words, instead of writing

-

-# #![allow(unused_variables)]
-#fn main() {
-let six = 0b110;
-#}
-

We write

-

-# #![allow(unused_variables)]
-#fn main() {
-type U6 = UInt<UInt<UInt<UTerm, B1>, B1>, B0>;
-#}
-

Wild, I know. If you look into the typenum crate you can do math and stuff -with these type level numbers, and we will a little bit below, but to start off -we just need to store one in some PhantomData.

-

A struct For Fixed Point

-

Our actual type for a fixed point value looks like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-use core::marker::PhantomData;
-use typenum::marker_traits::Unsigned;
-
-/// Fixed point `T` value with `F` fractional bits.
-#[derive(Debug, Copy, Clone, Default, PartialEq, Eq, PartialOrd, Ord)]
-#[repr(transparent)]
-pub struct Fx<T, F: Unsigned> {
-  bits: T,
-  _phantom: PhantomData<F>,
-}
-#}
-

This says that Fx<T,F> is a generic type that holds some base number type T -and a F type that's marking off how many fractional bits we're using. We only -want people giving unsigned type-level values for the PhantomData type, so we -use the trait bound F: Unsigned.

-

We use -repr(transparent) -here to ensure that Fx will always be treated just like the base type in the -final program (in terms of bit pattern and ABI).

-

If you go and check, this is basically how the existing general purpose crates -for fixed point math represent their numbers. They're a little fancier about it -because they have to cover every case, and we only have to cover our GBA case.

-

That's quite a bit to type though. We probably want to make a few type aliases -for things to be easier to look at. Unfortunately there's no standard -notation for how -you write a fixed point type. We also have to limit ourselves to what's valid -for use in a Rust type too. I like the fx thing, so we'll use that for signed -and then fxu if we need an unsigned value.

-

-# #![allow(unused_variables)]
-#fn main() {
-/// Alias for an `i16` fixed point value with 8 fractional bits.
-pub type fx8_8 = Fx<i16,U8>;
-#}
-

Rust will complain about having non_camel_case_types, and you can shut that -warning up by putting an #[allow(non_camel_case_types)] attribute on the type -alias directly, or you can use #![allow(non_camel_case_types)] at the very top -of the module to shut up that warning for the whole module (which is what I -did).

-

Constructing A Fixed Point Value

-

So how do we actually make one of these values? Well, we can always just wrap or unwrap any value in our Fx type:

-

-# #![allow(unused_variables)]
-#fn main() {
-impl<T, F: Unsigned> Fx<T, F> {
-  /// Uses the provided value directly.
-  pub fn from_raw(r: T) -> Self {
-    Fx {
-      num: r,
-      phantom: PhantomData,
-    }
-  }
-  /// Unwraps the inner value.
-  pub fn into_raw(self) -> T {
-    self.num
-  }
-}
-#}
-

I'd like to use the From trait of course, but it was giving me some trouble, i -think because of the orphan rule. Oh well.

-

If we want to be particular to the fact that these are supposed to be -numbers... that gets tricky. Rust is actually quite bad at being generic about -number types. You can use the num crate, or you -can just use a macro and invoke it once per type. Guess what we're gonna do.

-

-# #![allow(unused_variables)]
-#fn main() {
-macro_rules! fixed_point_methods {
-  ($t:ident) => {
-    impl<F: Unsigned> Fx<$t, F> {
-      /// Gives the smallest positive non-zero value.
-      pub fn precision() -> Self {
-        Fx {
-          num: 1,
-          phantom: PhantomData,
-        }
-      }
-
-      /// Makes a value with the integer part shifted into place.
-      pub fn from_int_part(i: $t) -> Self {
-        Fx {
-          num: i << F::U8,
-          phantom: PhantomData,
-        }
-      }
-    }
-  };
-}
-
-fixed_point_methods! {u8}
-fixed_point_methods! {i8}
-fixed_point_methods! {i16}
-fixed_point_methods! {u16}
-fixed_point_methods! {i32}
-fixed_point_methods! {u32}
-#}
-

Now you'd think that those can be const, but at the moment you can't have a -const function with a bound on any trait other than Sized, so they have to -be normal functions.

-

Also, we're doing something a little interesting there with from_int_part. We -can take our F type and get its constant value. There's other associated -constants if we want it in other types, and also non-const methods if you wanted -that for some reason (maybe passing it as a closure function? dunno).

-

Casting Base Values

-

Next, once we have a value in one base type we will need to be able to move it -into another base type. Unfortunately this means we gotta use the as operator, -which requires a concrete source type and a concrete destination type. There's -no easy way for us to make it generic here.

-

We could let the user use into_raw, cast, and then do from_raw, but that's -error prone because they might change the fractional bit count accidentally. -This means that we have to write a function that does the casting while -perfectly preserving the fractional bit quantity. If we wrote one function for -each conversion it'd be like 30 different possible casts (6 base types that we -support, and then 5 possible target types). Instead, we'll write it just once in -a way that takes a closure, and let the user pass a closure that does the cast. -The compiler should merge it all together quite nicely for us once optimizations -kick in.

-

This code goes outside the macro. I want to avoid too much code in the macro if -we can, it's a little easier to cope with I think.

-

-# #![allow(unused_variables)]
-#fn main() {
-  /// Casts the base type, keeping the fractional bit quantity the same.
-  pub fn cast_inner<Z, C: Fn(T) -> Z>(self, op: C) -> Fx<Z, F> {
-    Fx {
-      num: op(self.num),
-      phantom: PhantomData,
-    }
-  }
-#}
-

It's horrible and ugly, but Rust is just bad at numbers sometimes.

-

Adjusting Fractional Part

-

In addition to the base value we might want to change our fractional bit -quantity. This is actually easier that it sounds, but it also requires us to be -tricky with the generics. We can actually use some typenum type level operators -here.

-

This code goes inside the macro: we need to be able to use the left shift and -right shift, which is easiest when we just use the macro's $t as our type. We -could alternately put a similar function outside the macro and be generic on T -having the left and right shift operators by using a where clause. As much as -I'd like to avoid too much code being generated by macro, I'd even more like -to avoid generic code with huge and complicated trait bounds. It comes down to -style, and you gotta decide for yourself.

-

-# #![allow(unused_variables)]
-#fn main() {
-      /// Changes the fractional bit quantity, keeping the base type the same.
-      pub fn adjust_fractional_bits<Y: Unsigned + IsEqual<F, Output = False>>(self) -> Fx<$t, Y> {
-        let leftward_movement: i32 = Y::to_i32() - F::to_i32();
-        Fx {
-          num: if leftward_movement > 0 {
-            self.num << leftward_movement
-          } else {
-            self.num >> (-leftward_movement)
-          },
-          phantom: PhantomData,
-        }
-      }
-#}
-

There's a few things at work. First, we introduce Y as the target number of -fractional bits, and we also limit it that the target bits quantity can't be -the same as we already have using a type-level operator. If it's the same as we -started with, why are you doing the cast at all?

-

Now, once we're sure that the current bits and target bits aren't the same, we -compute target - start, and call this our "leftward movement". Example: if -we're targeting 8 bits and we're at 4 bits, we do 8-4 and get +4 as our leftward -movement. If the leftward_movement is positive we naturally shift our current -value to the left. If it's not positive then it must be negative because we -eliminated 0 as a possibility using the type-level operator, so we shift to the -right by the negative value.

-

Addition, Subtraction, Shifting, Negative, Comparisons

-

From here on we're getting help from this blog -post by Job -Vranish, so thank them if you -learn something.

-

I might have given away the game a bit with those derive traits on our fixed -point type. For a fair number of operations you can use the normal form of the -op on the inner bits as long as the fractional parts have the same quantity. -This includes equality and ordering (which we derived) as well as addition, -subtraction, and bit shifting (which we need to do ourselves).

-

This code can go outside the macro, with sufficient trait bounds.

-

-# #![allow(unused_variables)]
-#fn main() {
-impl<T: Add<Output = T>, F: Unsigned> Add for Fx<T, F> {
-  type Output = Self;
-  fn add(self, rhs: Fx<T, F>) -> Self::Output {
-    Fx {
-      num: self.num + rhs.num,
-      phantom: PhantomData,
-    }
-  }
-}
-#}
-

The bound on T makes it so that Fx<T, F> can be added any time that T can -be added to its own type with itself as the output. We can use the exact same -pattern for Sub, Shl, Shr, and Neg. With enough trait bounds, we can do -anything!

-

-# #![allow(unused_variables)]
-#fn main() {
-impl<T: Sub<Output = T>, F: Unsigned> Sub for Fx<T, F> {
-  type Output = Self;
-  fn sub(self, rhs: Fx<T, F>) -> Self::Output {
-    Fx {
-      num: self.num - rhs.num,
-      phantom: PhantomData,
-    }
-  }
-}
-
-impl<T: Shl<u32, Output = T>, F: Unsigned> Shl<u32> for Fx<T, F> {
-  type Output = Self;
-  fn shl(self, rhs: u32) -> Self::Output {
-    Fx {
-      num: self.num << rhs,
-      phantom: PhantomData,
-    }
-  }
-}
-
-impl<T: Shr<u32, Output = T>, F: Unsigned> Shr<u32> for Fx<T, F> {
-  type Output = Self;
-  fn shr(self, rhs: u32) -> Self::Output {
-    Fx {
-      num: self.num >> rhs,
-      phantom: PhantomData,
-    }
-  }
-}
-
-impl<T: Neg<Output = T>, F: Unsigned> Neg for Fx<T, F> {
-  type Output = Self;
-  fn neg(self) -> Self::Output {
-    Fx {
-      num: -self.num,
-      phantom: PhantomData,
-    }
-  }
-}
-#}
-

Unfortunately, for Shl and Shr to have as much coverage on our type as it -does on the base type (allowing just about any right hand side) we'd have to do -another macro, but I think just u32 is fine. We can always add more later if -we need.

-

We could also implement BitAnd, BitOr, BitXor, and Not, but they don't -seem relevent to our fixed point math use, and this section is getting long -already. Just use the same general patterns if you want to add it in your own -programs. Shockingly, Rem also works directly if you want it, though I don't -forsee us needing floating point remainder. Also, the GBA can't do hardware -division or remainder, and we'll have to work around that below when we -implement Div (which maybe we don't need, but it's complex enough I should -show it instead of letting people guess).

-

Note: In addition to the various Op traits, there's also OpAssign -variants. Each OpAssign is the same as Op, but takes &mut self instead of -self and then modifies in place instead of producing a fresh value. In other -words, if you want both + and += you'll need to do the AddAssign trait -too. It's not the worst thing to just write a = a+b, so I won't bother with -showing all that here. It's pretty easy to figure out for yourself if you want.

-

Multiplication

-

This is where things get more interesting. When we have two numbers A and B -they really stand for (a*f) and (b*f). If we write A*B then we're really -writing (a*f)*(b*f), which can be rewritten as (a*b)*2f, and now it's -obvious that we have one more f than we wanted to have. We have to do the -multiply of the inner value and then divide out the f. We divide by 1 << bit_count, so if we have 8 fractional bits we'll divide by 256.

-

The catch is that, when we do the multiply we're extremely likely to overflow -our base type with that multiplication step. Then we do that divide, and now our -result is basically nonsense. We can avoid this to some extent by casting up to -a higher bit type, doing the multiplication and division at higher precision, -and then casting back down. We want as much precision as possible without being -too inefficient, so we'll always cast up to 32-bit (on a 64-bit machine you'd -cast up to 64-bit instead).

-

Naturally, any signed value has to be cast up to i32 and any unsigned value -has to be cast up to u32, so we'll have to handle those separately.

-

Also, instead of doing an actual divide we can right-shift by the correct -number of bits to achieve the same effect. Except when we have a signed value -that's negative, because actual division truncates towards zero and -right-shifting truncates towards negative infinity. We can get around this by -flipping the sign, doing the shift, and flipping the sign again (which sounds -silly but it's so much faster than doing an actual division).

-

Also, again signed values can be annoying, because if the value just happens -to be i32::MIN then when you negate it you'll have... still a negative -value. I'm not 100% on this, but I think the correct thing to do at that point -is to give $t::MIN as the output num value.

-

Did you get all that? Good, because this involves casting, so we will need to -implement it three times, which calls for another macro.

-

-# #![allow(unused_variables)]
-#fn main() {
-macro_rules! fixed_point_signed_multiply {
-  ($t:ident) => {
-    impl<F: Unsigned> Mul for Fx<$t, F> {
-      type Output = Self;
-      fn mul(self, rhs: Fx<$t, F>) -> Self::Output {
-        let pre_shift = (self.num as i32).wrapping_mul(rhs.num as i32);
-        if pre_shift < 0 {
-          if pre_shift == core::i32::MIN {
-            Fx {
-              num: core::$t::MIN,
-              phantom: PhantomData,
-            }
-          } else {
-            Fx {
-              num: (-((-pre_shift) >> F::U8)) as $t,
-              phantom: PhantomData,
-            }
-          }
-        } else {
-          Fx {
-            num: (pre_shift >> F::U8) as $t,
-            phantom: PhantomData,
-          }
-        }
-      }
-    }
-  };
-}
-
-fixed_point_signed_multiply! {i8}
-fixed_point_signed_multiply! {i16}
-fixed_point_signed_multiply! {i32}
-
-macro_rules! fixed_point_unsigned_multiply {
-  ($t:ident) => {
-    impl<F: Unsigned> Mul for Fx<$t, F> {
-      type Output = Self;
-      fn mul(self, rhs: Fx<$t, F>) -> Self::Output {
-        Fx {
-          num: ((self.num as u32).wrapping_mul(rhs.num as u32) >> F::U8) as $t,
-          phantom: PhantomData,
-        }
-      }
-    }
-  };
-}
-
-fixed_point_unsigned_multiply! {u8}
-fixed_point_unsigned_multiply! {u16}
-fixed_point_unsigned_multiply! {u32}
-#}
-

Division

-

Division is similar to multiplication, but reversed. Which makes sense. This -time A/B gives (a*f)/(b*f) which is a/b, one less f than we were -after.

-

As with the multiplication version of things, we have to up-cast our inner value -as much a we can before doing the math, to allow for the most precision -possible.

-

The snag here is that the GBA has no division or remainder. Instead, the GBA has -a BIOS function you can call to do i32/i32 division.

-

This is a potential problem for us though. If we have some unsigned value, we -need it to fit within the positive space of an i32 after the multiply so -that we can cast it to i32, call the BIOS function that only works on i32 -values, and cast it back to its actual type.

-
    -
  • If you have a u8 you're always okay, even with 8 floating bits.
  • -
  • If you have a u16 you're okay even with a maximum value up to 15 floating -bits, but having a maximum value and 16 floating bits makes it break.
  • -
  • If you have a u32 you're probably going to be in trouble all the time.
  • -
-

So... ugh, there's not much we can do about this. For now we'll just have to -suffer some.

-

// TODO: find a numerics book that tells us how to do u32/u32 divisions.

-

-# #![allow(unused_variables)]
-#fn main() {
-macro_rules! fixed_point_signed_division {
-  ($t:ident) => {
-    impl<F: Unsigned> Div for Fx<$t, F> {
-      type Output = Self;
-      fn div(self, rhs: Fx<$t, F>) -> Self::Output {
-        let mul_output: i32 = (self.num as i32).wrapping_mul(1 << F::U8);
-        let divide_result: i32 = crate::bios::div(mul_output, rhs.num as i32);
-        Fx {
-          num: divide_result as $t,
-          phantom: PhantomData,
-        }
-      }
-    }
-  };
-}
-
-fixed_point_signed_division! {i8}
-fixed_point_signed_division! {i16}
-fixed_point_signed_division! {i32}
-
-macro_rules! fixed_point_unsigned_division {
-  ($t:ident) => {
-    impl<F: Unsigned> Div for Fx<$t, F> {
-      type Output = Self;
-      fn div(self, rhs: Fx<$t, F>) -> Self::Output {
-        let mul_output: i32 = (self.num as i32).wrapping_mul(1 << F::U8);
-        let divide_result: i32 = crate::bios::div(mul_output, rhs.num as i32);
-        Fx {
-          num: divide_result as $t,
-          phantom: PhantomData,
-        }
-      }
-    }
-  };
-}
-
-fixed_point_unsigned_division! {u8}
-fixed_point_unsigned_division! {u16}
-fixed_point_unsigned_division! {u32}
-#}
-

Trigonometry

-

TODO: look up tables! arcbits!

-

Just Using A Crate

-

If, after seeing all that, and seeing that I still didn't even cover every -possible trait impl that you might want for all the possible types... if after -all that you feel too intimidated, then I'll cave a bit on your behalf and -suggest to you that the fixed crate seems to -be the best crate available for fixed point math.

-

I have not tested its use on the GBA myself.

-

It's just my recommendation from looking at the docs of the various options -available, if you really wanted to just have a crate for it.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/01-quirks/03-volatile_destination.html b/docs/01-quirks/03-volatile_destination.html deleted file mode 100644 index b9a3886..0000000 --- a/docs/01-quirks/03-volatile_destination.html +++ /dev/null @@ -1,521 +0,0 @@ - - - - - - Volatile Destination - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Volatile Destination

-

TODO: update this when we can make more stuff const

-

Volatile Memory

-

The compiler is an eager friend, so when it sees a read or a write that won't -have an effect, it eliminates that read or write. For example, if we write

-

-# #![allow(unused_variables)]
-#fn main() {
-let mut x = 5;
-x = 7;
-#}
-

The compiler won't actually ever put 5 into x. It'll skip straight to putting -7 in x, because we never read from x when it's 5, so that's a safe change to -make. Normally, values are stored in RAM, which has no side effects when you -read and write from it. RAM is purely for keeping notes about values you'll need -later on.

-

However, what if we had a bit of hardware where we wanted to do a write and that -did something other than keeping the value for us to look at later? As you saw -in the hello_magic example, we have to use a write_volatile operation. -Volatile means "just do it anyway". The compiler thinks that it's pointless, but -we know better, so we can force it to really do exactly what we say by using -write_volatile instead of write.

-

This is kinda error prone though, right? Because it's just a raw pointer, so we -might forget to use write_volatile at some point.

-

Instead, we want a type that's always going to use volatile reads and writes. -Also, we want a pointer type that lets our reads and writes to be as safe as -possible once we've unsafely constructed the initial value.

-

Constructing The VolAddress Type

-

First, we want a type that stores a location within the address space. This can -be a pointer, or a usize, and we'll use a usize because that's easier to -work with in a const context (and we want to have const when we can get it). -We'll also have our type use NonZeroUsize instead of just usize so that -Option<VolAddress<T>> stays as a single machine word. This helps quite a bit -when we want to iterate over the addresses of a block of memory (such as -locations within the palette memory). Hardware is never at the null address -anyway. Also, if we had just an address number then we wouldn't be able to -track what type the address is for. We need some -PhantomData, -and specifically we need the phantom data to be for *mut T:

-
    -
  • If we used *const T that'd have the wrong -variance.
  • -
  • If we used &mut T then that's fusing in the ideas of lifetime and -exclusive access to our type. That's potentially important, but that's also -an abstraction we'll build on top of this VolAddress type if we need it.
  • -
-

One abstraction layer at a time, so we start with just a phantom pointer. This gives us a type that looks like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[derive(Debug)]
-#[repr(transparent)]
-pub struct VolAddress<T> {
-  address: NonZeroUsize,
-  marker: PhantomData<*mut T>,
-}
-#}
-

Now, because of how derive is specified, it derives traits if the generic -parameter supports those traits. Since our type is like a pointer, the traits -it supports are distinct from whatever traits the target type supports. So we'll -provide those implementations manually.

-

-# #![allow(unused_variables)]
-#fn main() {
-impl<T> Clone for VolAddress<T> {
-  fn clone(&self) -> Self {
-    *self
-  }
-}
-impl<T> Copy for VolAddress<T> {}
-impl<T> PartialEq for VolAddress<T> {
-  fn eq(&self, other: &Self) -> bool {
-    self.address == other.address
-  }
-}
-impl<T> Eq for VolAddress<T> {}
-impl<T> PartialOrd for VolAddress<T> {
-  fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
-    Some(self.address.cmp(&other.address))
-  }
-}
-impl<T> Ord for VolAddress<T> {
-  fn cmp(&self, other: &Self) -> Ordering {
-    self.address.cmp(&other.address)
-  }
-}
-#}
-

Boilerplate junk, not interesting. There's a reason that you derive those traits -99% of the time in Rust.

-

Constructing A VolAddress Value

-

Okay so here's the next core concept: If we unsafely construct a -VolAddress<T>, then we can safely use the value once it's been properly -created.

-

-# #![allow(unused_variables)]
-#fn main() {
-// you'll need these features enabled and a recent nightly
-#![feature(const_int_wrapping)]
-#![feature(min_const_unsafe_fn)]
-
-impl<T> VolAddress<T> {
-  pub const unsafe fn new_unchecked(address: usize) -> Self {
-    VolAddress {
-      address: NonZeroUsize::new_unchecked(address),
-      marker: PhantomData,
-    }
-  }
-  pub const unsafe fn cast<Z>(self) -> VolAddress<Z> {
-    VolAddress {
-      address: self.address,
-      marker: PhantomData,
-    }
-  }
-  pub unsafe fn offset(self, offset: isize) -> Self {
-    VolAddress {
-      address: NonZeroUsize::new_unchecked(self.address.get().wrapping_add(offset as usize * core::mem::size_of::<T>())),
-      marker: PhantomData,
-    }
-  }
-}
-#}
-

So what are the unsafety rules here?

-
    -
  • Non-null, obviously.
  • -
  • Must be aligned for T
  • -
  • Must always produce valid bit patterns for T
  • -
  • Must not be part of the address space that Rust's stack or allocator will ever -uses.
  • -
-

So, again using the hello_magic example, we had

-

-# #![allow(unused_variables)]
-#fn main() {
-(0x400_0000 as *mut u16).write_volatile(0x0403);
-#}
-

And instead we could declare

-

-# #![allow(unused_variables)]
-#fn main() {
-const MAGIC_LOCATION: VolAddress<u16> = unsafe { VolAddress::new_unchecked(0x400_0000) };
-#}
-

Using A VolAddress Value

-

Now that we've named the magic location, we want to write to it.

-

-# #![allow(unused_variables)]
-#fn main() {
-impl<T> VolAddress<T> {
-  pub fn read(self) -> T
-  where
-    T: Copy,
-  {
-    unsafe { (self.address.get() as *mut T).read_volatile() }
-  }
-  pub unsafe fn read_non_copy(self) -> T {
-    (self.address.get() as *mut T).read_volatile()
-  }
-  pub fn write(self, val: T) {
-    unsafe { (self.address.get() as *mut T).write_volatile(val) }
-  }
-}
-#}
-

So if the type is Copy we can read it as much as we want. If, somehow, the -type isn't Copy, then it might be Drop, and that means if we read out a -value over and over we could cause the drop method to trigger UB. Since the -end user might really know what they're doing, we provide an unsafe backup -read_non_copy.

-

On the other hand, we can write to the location as much as we want. Even if -the type isn't Copy, not running Drop is safe, so a write is always -safe.

-

Now we can write to our magical location.

-

-# #![allow(unused_variables)]
-#fn main() {
-MAGIC_LOCATION.write(0x0403);
-#}
-

VolAddress Iteration

-

We've already seen that sometimes we want to have a base address of some sort -and then offset from that location to another. What if we wanted to iterate over -all the locations. That's not particularly hard.

-

-# #![allow(unused_variables)]
-#fn main() {
-impl<T> VolAddress<T> {
-  pub const unsafe fn iter_slots(self, slots: usize) -> VolAddressIter<T> {
-    VolAddressIter { vol_address: self, slots }
-  }
-}
-
-#[derive(Debug)]
-pub struct VolAddressIter<T> {
-  vol_address: VolAddress<T>,
-  slots: usize,
-}
-impl<T> Clone for VolAddressIter<T> {
-  fn clone(&self) -> Self {
-    VolAddressIter {
-      vol_address: self.vol_address,
-      slots: self.slots,
-    }
-  }
-}
-impl<T> PartialEq for VolAddressIter<T> {
-  fn eq(&self, other: &Self) -> bool {
-    self.vol_address == other.vol_address && self.slots == other.slots
-  }
-}
-impl<T> Eq for VolAddressIter<T> {}
-impl<T> Iterator for VolAddressIter<T> {
-  type Item = VolAddress<T>;
-
-  fn next(&mut self) -> Option<Self::Item> {
-    if self.slots > 0 {
-      let out = self.vol_address;
-      unsafe {
-        self.slots -= 1;
-        self.vol_address = self.vol_address.offset(1);
-      }
-      Some(out)
-    } else {
-      None
-    }
-  }
-}
-impl<T> FusedIterator for VolAddressIter<T> {}
-#}
-

VolAddressBlock

-

Obviously, having a base address and a length exist separately is error prone. -There's a good reason for slices to keep their pointer and their length -together. We want something like that, which we'll call a "block" because -"array" and "slice" are already things in Rust.

-

-# #![allow(unused_variables)]
-#fn main() {
-#[derive(Debug)]
-pub struct VolAddressBlock<T> {
-  vol_address: VolAddress<T>,
-  slots: usize,
-}
-impl<T> Clone for VolAddressBlock<T> {
-  fn clone(&self) -> Self {
-    VolAddressBlock {
-      vol_address: self.vol_address,
-      slots: self.slots,
-    }
-  }
-}
-impl<T> PartialEq for VolAddressBlock<T> {
-  fn eq(&self, other: &Self) -> bool {
-    self.vol_address == other.vol_address && self.slots == other.slots
-  }
-}
-impl<T> Eq for VolAddressBlock<T> {}
-
-impl<T> VolAddressBlock<T> {
-  pub const unsafe fn new_unchecked(vol_address: VolAddress<T>, slots: usize) -> Self {
-    VolAddressBlock { vol_address, slots }
-  }
-  pub const fn iter(self) -> VolAddressIter<T> {
-    VolAddressIter {
-      vol_address: self.vol_address,
-      slots: self.slots,
-    }
-  }
-  pub unsafe fn index_unchecked(self, slot: usize) -> VolAddress<T> {
-    self.vol_address.offset(slot as isize)
-  }
-  pub fn index(self, slot: usize) -> VolAddress<T> {
-    if slot < self.slots {
-      unsafe { self.vol_address.offset(slot as isize) }
-    } else {
-      panic!("Index Requested: {} >= Bound: {}", slot, self.slots)
-    }
-  }
-  pub fn get(self, slot: usize) -> Option<VolAddress<T>> {
-    if slot < self.slots {
-      unsafe { Some(self.vol_address.offset(slot as isize)) }
-    } else {
-      None
-    }
-  }
-}
-#}
-

Now we can have something like:

-

-# #![allow(unused_variables)]
-#fn main() {
-const OTHER_MAGIC: VolAddressBlock<u16> = unsafe {
-  VolAddressBlock::new_unchecked(
-    VolAddress::new_unchecked(0x600_0000),
-    240 * 160
-  )
-};
-
-OTHER_MAGIC.index(120 + 80 * 240).write_volatile(0x001F);
-OTHER_MAGIC.index(136 + 80 * 240).write_volatile(0x03E0);
-OTHER_MAGIC.index(120 + 96 * 240).write_volatile(0x7C00);
-#}
-

Docs?

-

If you wanna see these types and methods with a full docs write up you should -check the GBA crate's source.

-

Volatile ASM

-

In addition to some memory locations being volatile, it's also possible for -inline assembly to be declared volatile. This is basically the same idea, "hey -just do what I'm telling you, don't get smart about it".

-

Normally when you have some asm! it's basically treated like a function, -there's inputs and outputs and the compiler will try to optimize it so that if -you don't actually use the outputs it won't bother with doing those -instructions. However, asm! is basically a pure black box, so the compiler -doesn't know what's happening inside at all, and it can't see if there's any -important side effects going on.

-

An example of an important side effect that doesn't have output values would be -putting the CPU into a low power state while we want for the next VBlank. This -lets us save quite a bit of battery power. It requires some setup to be done -safely (otherwise the GBA won't ever actually wake back up from the low power -state), but the asm! you use once you're ready is just a single instruction -with no return value. The compiler can't tell what's going on, so you just have -to say "do it anyway".

-

Note that if you use a linker script to include any ASM with your Rust program -(eg: the crt0.s file that we setup in the "Development Setup" section), all of -that ASM is "volatile" for these purposes. Volatile isn't actually a hardware -concept, it's just an LLVM concept, and the linker script runs after LLVM has -done its work.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/01-quirks/04-newtype.html b/docs/01-quirks/04-newtype.html deleted file mode 100644 index 5890bd7..0000000 --- a/docs/01-quirks/04-newtype.html +++ /dev/null @@ -1,396 +0,0 @@ - - - - - - Newtype - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Newtype

-

TODO: we've already used newtype twice by now (fixed point values and volatile -addresses), so we need to adjust how we start this section.

-

There's a great Zero Cost abstraction that we'll be using a lot that you might -not already be familiar with: we're talking about the "Newtype Pattern"!

-

Now, I told you to read the Rust Book before you read this book, and I'm sure -you're all good students who wouldn't sneak into this book without doing the -required reading, so I'm sure you all remember exactly what I'm talking about, -because they touch on the newtype concept in the book twice, in two very long -named sections:

- -

...Yeah... The Rust Book doesn't know how to make a short sub-section name to -save its life. Shame.

-

Newtype Basics

-

So, we have all these pieces of data, and we want to keep them separated, and we -don't wanna pay the cost for it at runtime. Well, we're in luck, we can pay the -cost at compile time.

-

-# #![allow(unused_variables)]
-#fn main() {
-pub struct PixelColor(u16);
-#}
-

TODO: we've already talked about repr(transparent) by now

-

Ah, except that, as I'm sure you remember from The -Rustonomicon -(and from the RFC too, of course), if we have a single field struct that's -sometimes different from having just the bare value, so we should be using -#[repr(transparent)] with our newtypes.

-

-# #![allow(unused_variables)]
-#fn main() {
-#[repr(transparent)]
-pub struct PixelColor(u16);
-#}
-

And then we'll need to do that same thing for every other newtype we want.

-

Except there's only two tiny parts that actually differ between newtype -declarations: the new name and the base type. All the rest is just the same rote -code over and over. Generating piles and piles of boilerplate code? Sounds like -a job for a macro to me!

-

Making It A Macro

-

If you're going to do much with macros you should definitely read through The -Little Book of Rust -Macros, but we won't be -doing too much so you can just follow along here a bit if you like.

-

The most basic version of a newtype macro starts like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[macro_export]
-macro_rules! newtype {
-  ($new_name:ident, $old_name:ident) => {
-    #[repr(transparent)]
-    pub struct $new_name($old_name);
-  };
-}
-#}
-

The #[macro_export] makes it exported by the current module (like pub -kinda), and then we have one expansion option that takes an identifier, a ,, -and then a second identifier. The new name is the outer type we'll be using, and -the old name is the inner type that's being wrapped. You'd use our new macro -something like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-newtype! {PixelColorCurly, u16}
-
-newtype!(PixelColorParens, u16);
-
-newtype![PixelColorBrackets, u16];
-#}
-

Note that you can invoke the macro with the outermost grouping as any of (), -[], or {}. It makes no particular difference to the macro. Also, that space -in the first version is kinda to show off that you can put white space in -between the macro name and the grouping if you want. The difference is mostly -style, but there are some rules and considerations here:

-
    -
  • If you use curly braces then you must not put a ; after the invocation.
  • -
  • If you use parentheses or brackets then you must put the ; at the end.
  • -
  • Rustfmt cares which you use and formats accordingly: -
      -
    • Curly brace macro use mostly gets treated like a code block.
    • -
    • Parentheses macro use mostly gets treated like a function call.
    • -
    • Bracket macro use mostly gets treated like an array declaration.
    • -
    -
  • -
-

As a reminder: remember that macro_rules macros have to appear before -they're invoked in your source, so the newtype macro will always have to be at -the very top of your file, or if you put it in a module within your project -you'll need to declare the module before anything that uses it.

-

Upgrade That Macro!

-

We also want to be able to add derive stuff and doc comments to our newtype. -Within the context of macro_rules! definitions these are called "meta". Since -we can have any number of them we wrap it all up in a "zero or more" matcher. -Then our macro looks like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[macro_export]
-macro_rules! newtype {
-  ($(#[$attr:meta])* $new_name:ident, $old_name:ident) => {
-    $(#[$attr])*
-    #[repr(transparent)]
-    pub struct $new_name($old_name);
-  };
-}
-#}
-

So now we can write

-

-# #![allow(unused_variables)]
-#fn main() {
-newtype! {
-  /// Color on the GBA gives 5 bits for each channel, the highest bit is ignored.
-  #[derive(Debug, Clone, Copy)]
-  PixelColor, u16
-}
-#}
-

Next, we can allow for the wrapping of types that aren't just a single -identifier by changing $old_name from :ident to :ty. We can't also do -this for the $new_type part because declaring a new struct expects a valid -identifier that's not already declared (obviously), and :ty is intended for -capturing types that already exist.

-

-# #![allow(unused_variables)]
-#fn main() {
-#[macro_export]
-macro_rules! newtype {
-  ($(#[$attr:meta])* $new_name:ident, $old_name:ty) => {
-    $(#[$attr])*
-    #[repr(transparent)]
-    pub struct $new_name($old_name);
-  };
-}
-#}
-

Next of course we'll want to usually have a new method that's const and just -gives a 0 value. We won't always be making a newtype over a number value, but we -often will. It's usually silly to have a new method with no arguments since we -might as well just impl Default, but Default::default isn't const, so -having pub const fn new() -> Self is justified here.

-

Here, the token 0 is given the {integer} type, which can be converted into -any of the integer types as needed, but it still can't be converted into an -array type or a pointer or things like that. Accordingly we've added the "no -frills" option which declares the struct and no new method.

-

-# #![allow(unused_variables)]
-#fn main() {
-#[macro_export]
-macro_rules! newtype {
-  ($(#[$attr:meta])* $new_name:ident, $old_name:ty) => {
-    $(#[$attr])*
-    #[repr(transparent)]
-    pub struct $new_name($old_name);
-    impl $new_name {
-      /// A `const` "zero value" constructor
-      pub const fn new() -> Self {
-        $new_name(0)
-      }
-    }
-  };
-  ($(#[$attr:meta])* $new_name:ident, $old_name:ty, no frills) => {
-    $(#[$attr])*
-    #[repr(transparent)]
-    pub struct $new_name($old_name);
-  };
-}
-#}
-

Finally, we usually want to have the wrapped value be totally private, but there -are occasions where that's not the case. For this, we can allow the wrapped -field to accept a visibility modifier.

-

-# #![allow(unused_variables)]
-#fn main() {
-#[macro_export]
-macro_rules! newtype {
-  ($(#[$attr:meta])* $new_name:ident, $v:vis $old_name:ty) => {
-    $(#[$attr])*
-    #[repr(transparent)]
-    pub struct $new_name($v $old_name);
-    impl $new_name {
-      /// A `const` "zero value" constructor
-      pub const fn new() -> Self {
-        $new_name(0)
-      }
-    }
-  };
-  ($(#[$attr:meta])* $new_name:ident, $v:vis $old_name:ty, no frills) => {
-    $(#[$attr])*
-    #[repr(transparent)]
-    pub struct $new_name($v $old_name);
-  };
-}
-#}
- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/01-quirks/05-const_asserts.html b/docs/01-quirks/05-const_asserts.html deleted file mode 100644 index 6a882f2..0000000 --- a/docs/01-quirks/05-const_asserts.html +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - Const Asserts - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Constant Assertions

-

Have you ever wanted to assert things even before runtime? We all have, of -course. Particularly when the runtime machine is a poor little GBA, we'd like to -have the machine doing the compile handle as much checking as possible.

-

Enter the static assertions crate, which -provides a way to let you assert on a const expression.

-

This is an amazing crate that you should definitely use when you can.

-

It's written by Nikolai Vazquez, and they kindly -wrote up a blog -post that -explains the thinking behind it.

-

However, I promised that each example would be single file, and I also promised -to explain what's going on as we go, so we'll briefly touch upon giving an -explanation here.

-

How We Const Assert

-

Alright, as it stands (2018-12-15), we can't use if in a const context.

-

Since we can't use if, we can't use a normal assert!. Some day it will be -possible, and a failed assert at compile time will be a compile error and a -failed assert at run time will be a panic and we'll have a nice unified -programming experience. We can add runtime-only assertions by being a little -tricky with the compiler.

-

If we write

-

-# #![allow(unused_variables)]
-#fn main() {
-const ASSERT: usize = 0 - 1;
-#}
-

that gives a warning, since the math would underflow. We can upgrade that -warning to a hard error:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[deny(const_err)]
-const ASSERT: usize = 0 - 1;
-#}
-

And to make our construction reusable we can enable the -underscore_const_names feature -in our program (or library) and then give each such const an underscore for a -name.

-

-# #![allow(unused_variables)]
-#![feature(underscore_const_names)]
-
-#fn main() {
-#[deny(const_err)]
-const _: usize = 0 - 1;
-#}
-

Now we wrap this in a macro where we give a bool expression as input. We -negate the bool then cast it to a usize, meaning that true negates into -false, which becomes 0usize, and then there's no underflow error. Or if the -input was false, it negates into true, then becomes 1usize, and then the -underflow error fires.

-

-# #![allow(unused_variables)]
-#fn main() {
-macro_rules! const_assert {
-  ($condition:expr) => {
-    #[deny(const_err)]
-    #[allow(dead_code)]
-    const ASSERT: usize = 0 - !$condition as usize;
-  }
-}
-#}
-

Technically, written like this, the expression can be anything with a -core::ops::Not implementation that can also be as cast into usize. That's -bool, but also basically all the other number types. Since we want to ensure -that we get proper looking type errors when things go wrong, we can use -($condition && true) to enforce that we get a bool (thanks to Talchas for -that particular suggestion).

-

-# #![allow(unused_variables)]
-#fn main() {
-macro_rules! const_assert {
-  ($condition:expr) => {
-    #[deny(const_err)]
-    #[allow(dead_code)]
-    const _: usize = 0 - !($condition && true) as usize;
-  }
-}
-#}
-

Asserting Something

-

As an example of how we might use a const_assert, we'll do a demo with colors. -There's a red, blue, and green channel. We store colors in a u16 with 5 bits -for each channel.

-

-# #![allow(unused_variables)]
-#fn main() {
-newtype! {
-  #[derive(Debug, Clone, Copy, PartialEq, Eq)]
-  Color, u16
-}
-#}
-

And when we're building a color, we're passing in u16 values, but they could -be using more than just 5 bits of space. We want to make sure that each channel -is 31 or less, so we can make a color builder that does a const_assert! on the -value of each channel.

-

-# #![allow(unused_variables)]
-#fn main() {
-macro_rules! rgb {
-  ($r:expr, $g:expr, $b:expr) => {
-    {
-      const_assert!($r <= 31);
-      const_assert!($g <= 31);
-      const_assert!($b <= 31);
-      Color($b << 10 | $g << 5 | $r)
-    }
-  }
-}
-#}
-

And then we can declare some colors

-

-# #![allow(unused_variables)]
-#fn main() {
-const RED: Color = rgb!(31, 0, 0);
-
-const BLUE: Color = rgb!(31, 500, 0);
-#}
-

The second one is clearly out of bounds and it fires an error just like we -wanted.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/02-concepts/00-index.html b/docs/02-concepts/00-index.html deleted file mode 100644 index 362ca83..0000000 --- a/docs/02-concepts/00-index.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - Concepts - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Broad Concepts

-

The GameBoy Advance sits in a middle place between the chthonic game consoles of -the ancient past and the "small PC in a funny case" consoles of the modern age.

-

On the one hand, yeah, you're gonna find a few strange conventions as you learn -all the ropes.

-

On the other, at least we're writing in Rust at all, and not having to do all -the assembly by hand.

-

This chapter for "concepts" has a section for each part of the GBA's hardware -memory map, going by increasing order of base address value. The sections try to -explain as much as possible while sticking to just the concerns you might have -regarding that part of the memory map.

-

For an assessment of how to wrangle all three parts of the video system (PALRAM, -VRAM, and OAM), along with the correct IO registers, into something that shows a -picture, you'll want the Video chapter.

-

Similarly, the "IO Registers" part of the GBA actually controls how you interact -with every single bit of hardware connected to the GBA. A full description of -everything is obviously too much for just one section of the book. Instead you -get an overview of general IO register rules and advice. Each particular -register is described in the appropriate sections of either the Video or -Non-Video chapters.

-

Bus Size

-

TODO: describe this

-

Minimum Write Size

-

TODO: talk about parts where you can't write one byte at a time

-

Volatile or Not?

-

TODO: discuss what memory should be used volatile style and what can be used normal style.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/02-concepts/01-cpu.html b/docs/02-concepts/01-cpu.html deleted file mode 100644 index c0dacbb..0000000 --- a/docs/02-concepts/01-cpu.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - CPU - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

CPU

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/02-concepts/02-bios.html b/docs/02-concepts/02-bios.html deleted file mode 100644 index 990aa1e..0000000 --- a/docs/02-concepts/02-bios.html +++ /dev/null @@ -1,410 +0,0 @@ - - - - - - BIOS - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

BIOS

-
    -
  • Address Span: 0x0 to 0x3FFF (16k)
  • -
-

The BIOS of the GBA is a small read-only -portion of memory at the very base of the address space. However, it is also -hardware protected against reading, so if you try to read from BIOS memory when -the program counter isn't pointed into the BIOS (eg: any time code you write -is executing) then you get basically garbage -data back.

-

So we're not going to spend time here talking about what bits to read or write -within BIOS memory like we do with the other sections. Instead we're going to -spend time talking about inline -assembly -(tracking issue) and then use -it to call the GBA BIOS -Functions.

-

Note that BIOS calls have more overhead than normal function calls, so don't -go using them all over the place if you don't have to. They're also usually -written more to be compact in terms of code than for raw speed, so you actually -can out speed them in some cases. Between the increased overhead and not being -as speed optimized, you can sometimes do a faster job without calling the BIOS -at all. (TODO: investigate more about what parts of the BIOS we could -potentially offer faster alternatives for.)

-

I'd like to take a moment to thank Marc Brinkmann -(with contributions from Oliver Schneider and -Philipp Oppermann) for writing this blog -post. It's at least -ten times the tutorial quality as the asm entry in the Unstable Book has. In -fairness to the Unstable Book, the actual spec of how inline ASM works in rust -is "basically what clang does", and that's specified as "basically what GCC -does", and that's basically/shockingly not specified much at all despite GCC -being like 30 years old.

-

So let's be slow and pedantic about this process.

-

Inline ASM

-

Fair Warning: Inline asm is one of the least stable parts of Rust overall, -and if you write bad things you can trigger internal compiler errors and panics -and crashes and make LLVM choke and die without explanation. If you write some -inline asm and then suddenly your program suddenly stops compiling without -explanation, try commenting out that whole inline asm use and see if it's -causing the problem. Double check that you've written every single part of the -asm call absolutely correctly, etc, etc.

-

Bonus Warning: The general information that follows regarding the asm macro -is consistent from system to system, but specific information about register -names, register quantities, asm instruction argument ordering, and so on is -specific to ARM on the GBA. If you're programming for any other device you'll -need to carefully investigate that before you begin.

-

Now then, with those out of the way, the inline asm docs describe an asm call as -looking like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-asm!(assembly template
-   : output operands
-   : input operands
-   : clobbers
-   : options
-   );
-#}
-

And once you stick a lot of stuff in there it can absolutely be hard to -remember the ordering of the elements. So we'll start with a code block that -has some comments thrown in on each line:

-

-# #![allow(unused_variables)]
-#fn main() {
-asm!(/* ASM */ TODO
-    :/* OUT */ TODO
-    :/* INP */ TODO
-    :/* CLO */ TODO
-    :/* OPT */
-);
-#}
-

Now we have to decide what we're gonna write. Obviously we're going to do some -instructions, but those instructions use registers, and how are we gonna talk -about them? We've got two choices.

-
    -
  1. -

    We can pick each and every register used by specifying exact register names. -In THUMB mode we have 8 registers available, named r0 through r7. If you -switch into 32-bit mode there's additional registers that are also available.

    -
  2. -
  3. -

    We can specify slots for registers we need and let LLVM decide. In this style -you name your slots $0, $1 and so on. Slot numbers are assigned first to -all specified outputs, then to all specified inputs, in the order that you -list them.

    -
  4. -
-

In the case of the GBA BIOS, each BIOS function has pre-designated input and -output registers, so we will use the first style. If you use inline ASM in other -parts of your code you're free to use the second style.

-

Assembly

-

This is just one big string literal. You write out one instruction per line, and -excess whitespace is ignored. You can also do comments within your assembly -using ; to start a comment that goes until the end of the line.

-

Assembly convention doesn't consider it unreasonable to comment potentially as -much as every single line of asm that you write when you're getting used to -things. Or even if you are used to things. This is cryptic stuff, there's a -reason we avoid writing in it as much as possible.

-

Remember that our Rust code is in 16-bit mode. You can switch to 32-bit mode -within your asm as long as you switch back by the time the block ends. Otherwise -you'll have a bad time.

-

Outputs

-

A comma separated list. Each entry looks like

-
    -
  • "constraint" (binding)
  • -
-

An output constraint starts with a symbol:

-
    -
  • = for write only
  • -
  • + for reads and writes
  • -
  • & for for "early clobber", meaning that you'll write to this at some point -before all input values have been read. It prevents this register from being -assigned to an input register.
  • -
-

Followed by either the letter r (if you want LLVM to pick the register to -use) or curly braces around a specific register (if you want to pick).

-
    -
  • The binding can be any single 32-bit or smaller value.
  • -
  • If your binding has bit pattern requirements ("must be non-zero", etc) you are -responsible for upholding that.
  • -
  • If your binding type will try to Drop later then you are responsible for it -being in a fit state to do that.
  • -
  • The binding must be either a mutable binding or a binding that was -pre-declared but not yet assigned.
  • -
-

Anything else is UB.

-

Inputs

-

This is a similar comma separated list.

-
    -
  • "constraint" (binding)
  • -
-

An input constraint doesn't have the symbol prefix, you just pick either r or -a named register with curly braces around it.

-
    -
  • An input binding must be a single 32-bit or smaller value.
  • -
  • An input binding should be a type that is Copy but this is not an absolute -requirement. Having the input be read is semantically similar to using -core::ptr::read(&binding) and forgetting the value when you're done.
  • -
-

Clobbers

-

Sometimes your asm will touch registers other than the ones declared for input -and output.

-

Clobbers are declared as a comma separated list of string literals naming -specific registers. You don't use curly braces with clobbers.

-

LLVM needs to know this information. It can move things around to keep your -data safe, but only if you tell it what's about to happen.

-

Failure to define all of your clobbers can cause UB.

-

Options

-

There's only one option we'd care to specify. That option is "volatile".

-

Just like with a function call, LLVM will skip a block of asm if it doesn't see -that any outputs from the asm were used later on. Nearly every single BIOS call -(other than the math operations) will need to be marked as "volatile".

-

BIOS ASM

-
    -
  • Inputs are always r0, r1, r2, and/or r3, depending on function.
  • -
  • Outputs are always zero or more of r0, r1, and r3.
  • -
  • Any of the output registers that aren't actually used should be marked as -clobbered.
  • -
  • All other registers are unaffected.
  • -
-

All of the GBA BIOS calls are performed using the -swi -instruction, combined with a value depending on what BIOS function you're trying -to invoke. If you're in 16-bit code you use the value directly, and if you're in -32-bit mode you shift the value up by 16 bits first.

-

Example BIOS Function: Division

-

For our example we'll use the division function, because GBATEK gives very clear -instructions on how each register is used with that one:

-
Signed Division, r0/r1.
-  r0  signed 32bit Number
-  r1  signed 32bit Denom
-Return:
-  r0  Number DIV Denom ;signed
-  r1  Number MOD Denom ;signed
-  r3  ABS (Number DIV Denom) ;unsigned
-For example, incoming -1234, 10 should return -123, -4, +123.
-The function usually gets caught in an endless loop upon division by zero.
-
-

The math folks tell me that the r1 value should be properly called the -"remainder" not the "modulus". We'll go with that for our function, doesn't hurt -to use the correct names. Our Rust function has an assert against dividing by -0, then we name some bindings without giving them a value, we make the asm -call, and then return what we got.

-

-# #![allow(unused_variables)]
-#fn main() {
-pub fn div_rem(numerator: i32, denominator: i32) -> (i32, i32) {
-  assert!(denominator != 0);
-  let div_out: i32;
-  let rem_out: i32;
-  unsafe {
-    asm!(/* ASM */ "swi 0x06"
-        :/* OUT */ "={r0}"(div_out), "={r1}"(rem_out)
-        :/* INP */ "{r0}"(numerator), "{r1}"(denominator)
-        :/* CLO */ "r3"
-        :/* OPT */
-    );
-  }
-  (div_out, rem_out)
-}
-#}
-

I hope this all makes sense by now.

-

Specific BIOS Functions

-

For a full list of all the specific BIOS functions and their use you should -check the gba::bios module within the gba crate. There's just so many of -them that enumerating them all here wouldn't serve much purpose.

-

Which is not to say that we'll never cover any BIOS functions in this book! -Instead, we'll simply mention them when whenever they're relevent to the task at -hand (such as controlling sound or waiting for vblank).

-

//TODO: list/name all BIOS functions as well as what they relate to elsewhere.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/02-concepts/03-wram.html b/docs/02-concepts/03-wram.html deleted file mode 100644 index eecf865..0000000 --- a/docs/02-concepts/03-wram.html +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - Work RAM - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Work RAM

-

External Work RAM (EWRAM)

-
    -
  • Address Span: 0x2000000 to 0x203FFFF (256k)
  • -
-

This is a big pile of space, the use of which is up to each game. However, the -external work ram has only a 16-bit bus (if you read/write a 32-bit value it -silently breaks it up into two 16-bit operations) and also 2 wait cycles (extra -CPU cycles that you have to expend per 16-bit bus use).

-

It's most helpful to think of EWRAM as slower, distant memory, similar to the -"heap" in a normal application. You can take the time to go store something -within EWRAM, or to load it out of EWRAM, but if you've got several operations -to do in a row and you're worried about time you should pull that value into -local memory, work on your local copy, and then push it back out to EWRAM.

-

Internal Work RAM (IWRAM)

-
    -
  • Address Span: 0x3000000 to 0x3007FFF (32k)
  • -
-

This is a smaller pile of space, but it has a 32-bit bus and no wait.

-

By default, 0x3007F00 to 0x3007FFF is reserved for interrupt and BIOS use. -The rest of it is mostly up to you. The user's stack space starts at 0x3007F00 -and proceeds down from there. For best results you should probably start at -0x3000000 and then go upwards. Under normal use it's unlikely that the two -memory regions will crash into each other.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/02-concepts/04-io-registers.html b/docs/02-concepts/04-io-registers.html deleted file mode 100644 index 325a5cb..0000000 --- a/docs/02-concepts/04-io-registers.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - IO Registers - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

IO Registers

-
    -
  • Address Span: 0x400_0000 to 0x400_03FE
  • -
- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/02-concepts/05-palram.html b/docs/02-concepts/05-palram.html deleted file mode 100644 index 0be81cb..0000000 --- a/docs/02-concepts/05-palram.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - Palette RAM - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Palette RAM (PALRAM)

-
    -
  • Address Span: 0x500_0000 to 0x500_03FF (1k)
  • -
-

Palette RAM has a 16-bit bus, which isn't really a problem because it -conceptually just holds u16 values. There's no automatic wait state, but if -you try to access the same location that the display controller is accessing you -get bumped by 1 cycle. Since the display controller can use the palette ram any -number of times per scanline it's basically impossible to predict if you'll have -to do a wait or not during VDraw. During VBlank you won't have any wait of -course.

-

PALRAM is among the memory where there's weirdness if you try to write just one -byte: if you try to write just 1 byte, it writes that byte into both parts of -the larger 16-bit location. This doesn't really affect us much with PALRAM, -because palette values are all supposed to be u16 anyway.

-

The palette memory actually contains not one, but two sets of palettes. First -there's 256 entries for the background palette data (starting at 0x500_0000), -and then there's 256 entries for object palette data (starting at 0x500_0200).

-

The GBA also has two modes for palette access: 8-bits-per-pixel (8bpp) and -4-bits-per-pixel (4bpp).

-
    -
  • In 8bpp mode an 8-bit palette index value within a background or sprite -simply indexes directly into the 256 slots for that type of thing.
  • -
  • In 4bpp mode a 4-bit palette index value within a background or sprite -specifies an index within a particular "palbank" (16 palette entries each), -and then a separate setting outside of the graphical data determines which -palbank is to be used for that background or object (the screen entry data for -backgrounds, and the object attributes for objects).
  • -
-

Transparency

-

When a pixel within a background or object specifies index 0 as its palette -entry it is treated as a transparent pixel. This means that in 8bpp mode there's -only 255 actual color options (0 being transparent), and in 4bpp mode there's -only 15 actual color options available within each palbank (the 0th entry of -each palbank is transparent).

-

Individual backgrounds, and individual objects, each determine if they're 4bpp -or 8bpp separately, so a given overall palette slot might map to a used color in -8bpp and an unused/transparent color in 4bpp. If you're a palette wizard.

-

Palette slot 0 of the overall background palette is used to determine the -"backdrop" color. That's the color you see if no background or object ends up -being rendered within a given pixel.

-

Since display mode 3 and display mode 5 don't use the palette, they cannot -benefit from transparency.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/02-concepts/06-vram.html b/docs/02-concepts/06-vram.html deleted file mode 100644 index 497c0bd..0000000 --- a/docs/02-concepts/06-vram.html +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - Video RAM - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Video RAM (VRAM)

-
    -
  • Address Span: 0x600_0000 to 0x601_7FFF (96k)
  • -
-

We've used this before! VRAM has a 16-bit bus and no wait. However, the same as -with PALRAM, the "you might have to wait if the display controller is looking at -it" rule applies here.

-

Unfortunately there's not much more exact detail that can be given about VRAM. -The use of the memory depends on the video mode that you're using.

-

One general detail of note is that you can't write individual bytes to any part -of VRAM. Depending on mode and location, you'll either get your bytes doubled -into both the upper and lower parts of the 16-bit location targeted, or you -won't even affect the memory. This usually isn't a big deal, except in two -situations:

-
    -
  • In Mode 4, if you want to change just 1 pixel, you'll have to be very careful -to read the old u16, overwrite just the byte you wanted to change, and then -write that back.
  • -
  • In any display mode, avoid using memcopy to place things into VRAM. -It's written to be byte oriented, and only does 32-bit transfers under select -conditions. The rest of the time it'll copy one byte at a time and you'll get -either garbage or nothing at all.
  • -
- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/02-concepts/07-oam.html b/docs/02-concepts/07-oam.html deleted file mode 100644 index 93944a9..0000000 --- a/docs/02-concepts/07-oam.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - Object Attribute Memory - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Object Attribute Memory (OAM)

-
    -
  • Address Span: 0x700_0000 to 0x700_03FF (1k)
  • -
-

The Object Attribute Memory has a 32-bit bus and no default wait, but suffers -from the "you might have to wait if the display controller is looking at it" -rule. You cannot write individual bytes to OAM at all, but that's not really a -problem because all the fields of the data types within OAM are either i16 or -u16 anyway.

-

Object attribute memory is the wildest yet: it conceptually contains two types -of things, but they're interlaced with each other all the way through.

-

Now, GBATEK and -CowByte -doesn't quite give names to the two data types here. -TONC calls them -OBJ_ATTR and OBJ_AFFINE, but we'll be giving them names fitting with the -Rust naming convention. Just know that if you try to talk about it with others -they might not be using the same names. In Rust terms their layout would look -like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[repr(C)]
-pub struct ObjectAttributes {
-  attr0: u16,
-  attr1: u16,
-  attr2: u16,
-  filler: i16,
-}
-
-#[repr(C)]
-pub struct AffineMatrix {
-  filler0: [u16; 3],
-  pa: i16,
-  filler1: [u16; 3],
-  pb: i16,
-  filler2: [u16; 3],
-  pc: i16,
-  filler3: [u16; 3],
-  pd: i16,
-}
-#}
-

(Note: the #[repr(C)] part just means that Rust must lay out the data exactly -in the order we specify, which otherwise it is not required to do).

-

So, we've got 1024 bytes in OAM and each ObjectAttributes value is 8 bytes, so -naturally we can support up to 128 objects.

-

At the same time, we've got 1024 bytes in OAM and each AffineMatrix is 32 -bytes, so we can have 32 of them.

-

But, as I said, these things are all interlaced with each other. See how -there's "filler" fields in each struct? If we imagine the OAM as being just an -array of one type or the other, indexes 0/1/2/3 of the ObjectAttributes array -would line up with index 0 of the AffineMatrix array. It's kinda weird, but -that's just how it works. When we setup functions to read and write these values -we'll have to be careful with how we do it. We probably won't want to use -those representations above, at least not with the AffineMatrix type, because -they're quite wasteful if you want to store just object attributes or just -affine matrices.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/02-concepts/08-rom.html b/docs/02-concepts/08-rom.html deleted file mode 100644 index 8183ac1..0000000 --- a/docs/02-concepts/08-rom.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - Game Pak ROM / Flash ROM - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Game Pak ROM / Flash ROM (ROM)

-
    -
  • Address Span (Wait State 0): 0x800_0000 to 0x9FF_FFFF
  • -
  • Address Span (Wait State 1): 0xA00_0000 to 0xBFF_FFFF
  • -
  • Address Span (Wait State 2): 0xC00_0000 to 0xDFF_FFFF
  • -
-

The game's ROM data is a single set of data that's up to 32 megabytes in size. -However, that data is mirrored to three different locations in the address -space. Depending on which part of the address space you use, it can affect the -memory timings involved.

-

TODO: describe WAITCNT here, we won't get a better chance at it.

-

TODO: discuss THUMB vs ARM code and why THUMB is so much faster (because ROM is a 16-bit bus)

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/02-concepts/09-sram.html b/docs/02-concepts/09-sram.html deleted file mode 100644 index b791e02..0000000 --- a/docs/02-concepts/09-sram.html +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - Save RAM - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Save RAM (SRAM)

-
    -
  • Address Span: 0xE00_0000 to 0xE00FFFF (64k)
  • -
-

The actual amount of SRAM available depends on your game pak, and the 64k figure -is simply the maximum possible. A particular game pak might have less, and an -emulator will likely let you have all 64k if you want.

-

As with other portions of the address space, SRAM has some number of wait cycles -per use. As with ROM, you can change the wait cycle settings via the WAITCNT -register if the defaults don't work well for your game pak. See the ROM section -for full details of how the WAITCNT register works.

-

The game pak SRAM also has only an 8-bit bus, so have fun with that.

-

The GBA Direct Memory Access (DMA) unit cannot access SRAM.

-

Also, you should not write to SRAM with code executing from -ROM. Instead, you -should move the code to WRAM and execute the save code from there. We'll cover -how to handle that eventually.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/03-video/00-index.html b/docs/03-video/00-index.html deleted file mode 100644 index 20891a4..0000000 --- a/docs/03-video/00-index.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - Video - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Video

-

GBA Video starts with an IO register called the "Display Control Register", and -then spirals out from there. You generally have to use Palette RAM (PALRAM), -Video RAM (VRAM), Object Attribute Memory (OAM), as well as any number of other -IO registers.

-

They all have to work together just right, and there's a lot going on when you -first try doing it, so try to take it very slowly as you're learning each step.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/03-video/01-rgb15.html b/docs/03-video/01-rgb15.html deleted file mode 100644 index 329ee50..0000000 --- a/docs/03-video/01-rgb15.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - RBG15 Color - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

RBG15 Color

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/03-video/TODO.html b/docs/03-video/TODO.html deleted file mode 100644 index 6430b98..0000000 --- a/docs/03-video/TODO.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - TODO - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

TODO

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/04-non-video/00-index.html b/docs/04-non-video/00-index.html deleted file mode 100644 index 63dbd56..0000000 --- a/docs/04-non-video/00-index.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - Non-Video - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Non-Video

-

Besides video effects the GBA still has an okay amount of stuff going on.

-

Obviously you'll want to know how to read the user's button inputs. That can -almost go without saying, except that I said it.

-

Each other part can be handled in about any order you like.

-

Using interrupts is perhaps one of the hardest things for us as Rust programmers -due to quirks in our compilation process. Our code all gets compiled to 16-bit -THUMB instructions, and we don't have a way to mark a function to be compiled -using 32-bit ASM instructions instead. However, an interrupt handler must be -written in 32-bit ASM instructions for it to work. That means that we have to -write our interrupt handler in 32-bit ASM by hand. We'll do it, but I don't -think we'll be too happy about it.

-

The Link Cable related stuff is also probably a little harder to test than -anything else. Just because link cable emulation isn't always the best, and or -you need two GBAs with two flash carts and the cable for hardware testing. -Still, we'll try to go over it eventually.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/04-non-video/01-buttons.html b/docs/04-non-video/01-buttons.html deleted file mode 100644 index 0af70d5..0000000 --- a/docs/04-non-video/01-buttons.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - Buttons - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Buttons

-

It's all well and good to just show a picture, even to show an animation, but if -we want a game we have to let the user interact with something.

-

Key Input Register

-
    -
  • KEYINPUT, 0x400_0130, u16, read only
  • -
-

This little u16 stores the status of all the buttons on the GBA, all at -once. There's only 10 of them, and we have 16 bits to work with, so that sounds -easy. However, there's a bit of a catch. The register follows a "low-active" -convention, where pressing a button clears that bit until it's released.

-

-# #![allow(unused_variables)]
-#fn main() {
-const NO_BUTTONS_PRESSED: u16 = 0b0000_0011_1111_1111;
-#}
-

The buttons are, going up in order from the 0th bit:

-
    -
  • A
  • -
  • B
  • -
  • Select
  • -
  • Start
  • -
  • Right
  • -
  • Left
  • -
  • Up
  • -
  • Down
  • -
  • R
  • -
  • L
  • -
-

Bits above that are not used. However, since the left and right directions, as -well as the up and down directions, can never be pressed at the same time, the -KEYINPUT register should never read as zero. Of course, the register might -read as zero if someone is using an emulator that allows for such inputs, so I -wouldn't go so far as to make it be NonZeroU16 or anything like that.

-

When programming, we usually are thinking of what buttons we want to have be -pressed instead of buttons we want to have not be pressed. This means that we -need an inversion to happen somewhere along the line. The easiest moment of -inversion is immediately as you read in from the register and wrap the value up -in a newtype.

-

-# #![allow(unused_variables)]
-#fn main() {
-pub fn read_key_input() -> KeyInput {
-  KeyInput(KEYINPUT.read() ^ 0b0000_0011_1111_1111)
-}
-#}
-

Now the KeyInput you get can be checked for what buttons are pressed by checking -for a set bit like you'd do anywhere else.

-

-# #![allow(unused_variables)]
-#fn main() {
-impl KeyInput {
-  pub fn a_pressed(self) -> bool {
-    (self.0 & A_BIT) > 0
-  }
-}
-#}
-

Note that the current KEYINPUT value changes in real time as the user presses -or releases the buttons. To account for this, it's best to read the value just -once per game frame and then use that single value as if it was the input across -the whole frame. If you've worked with polling input before that should sound -totally normal. If not, just remember to call read_key_input once per frame -and then use that KeyInput value across the whole frame.

-

Detecting New Presses

-

The keypad only tells you what's currently pressed, but if you want to check -what's newly pressed it's not too much harder.

-

All that you do is store the last frame's keys and compare them to the current -keys with an XOR. In the gba crate it's called KeyInput::difference. Once -you've got the difference between last frame and this frame, you know what -changes happened.

-
    -
  • If something is in the difference and not pressed in the last frame, that -means it was newly pressed.
  • -
  • If something is in the difference and pressed in the last frame that means -it was newly released.
  • -
  • If something is not in the difference then there's no change between last -frame and this frame.
  • -
-

Key Interrupt Control

-
    -
  • KEYCNT, 0x400_0132, u16, read/write
  • -
-

This lets you control what keys will trigger a keypad interrupt. Of course, for -the actual interrupt to fire you also need to set the IME and IE registers -properly. See the Interrupts section for details there.

-

The main thing to know about this register is that the keys are in the exact -same order as the key input order. However, with this register they use a -high-active convention instead (eg: the bit is active when the button should be -pressed as part of the interrupt).

-

In addition to simply having the bits for the buttons, bit 14 is a flag for -enabling keypad interrupts (in addition to the flag in the IE register), and -bit 15 decides how having more than one button works. If bit 15 is disabled, -it's an OR combination (eg: "press any key to continue"). If bit 15 is enabled -it's an AND combination (eg: "press A+B+Start+Select to reset").

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/04-non-video/02-timers.html b/docs/04-non-video/02-timers.html deleted file mode 100644 index 3f14c9f..0000000 --- a/docs/04-non-video/02-timers.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - Timers - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Timers

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/04-non-video/03-dma.html b/docs/04-non-video/03-dma.html deleted file mode 100644 index 3bf7d3e..0000000 --- a/docs/04-non-video/03-dma.html +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - Direct Memory Access - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Direct Memory Access

-

The GBA has four Direct Memory Access (DMA) units that can be utilized. They're -mostly the same in terms of overall operation, but each unit has special rules -that make it better suited to a particular task.

-

Please Note: TONC and GBATEK have slightly different concepts of how a DMA -unit's registers should be viewed. I've chosen to go by what GBATEK uses.

-

General DMA

-

A single DMA unit is controlled through four different IO Registers.

-
    -
  • Source: (DMAxSAD, read only) A *const pointer that the DMA reads from.
  • -
  • Destination: (DMAxDAD, read only) A *mut pointer that the DMA writes -to.
  • -
  • Count: (DMAxCNT_L, read only) How many transfers to perform.
  • -
  • Control: (DMAxCNT_H, read/write) A register full of bit-flags that -controls all sorts of details.
  • -
-

Here, the x is replaced with 0 through 3 when utilizing whichever particular -DMA unit.

-

Source Address

-

This is either a u32 or u16 address depending on the unit's assigned -transfer mode (see Control). The address MUST be aligned.

-

With DMA0 the source must be internal memory. With other DMA units the source -can be any non-SRAM location.

-

Destination Address

-

As with the Source, this is either a u32 or u16 address depending on the -unit's assigned transfer mode (see Control). The address MUST be aligned.

-

With DMA0/1/2 the destination must be internal memory. With DMA3 the destination -can be any non-SRAM memory (allowing writes into Game Pak ROM / FlashROM, -assuming that your Game Pak hardware supports that).

-

Count

-

This is a u16 that says how many transfers (u16 or u32) to make.

-

DMA0/1/2 will only actually accept a 14-bit value, while DMA3 will accept a full -16-bit value. A value of 0 instead acts as if you'd used the maximum value for -the DMA in question. Put another way, DMA0/1/2 transfer 1 through 0x4000 -words, with 0 as the 0x4000 value, and DMA3 transfers 1 through 0x1_0000 -words, with 0 as the 0x1_0000 value.

-

The maximum value isn't a very harsh limit. Even in just u16 mode, 0x4000 -transfers is 32k, which would for example be all 32k of IWRAM (including your -own user stack). If you for some reason do need to transfer more than a single -DMA use can move around at once then you can just setup the DMA a second time -and keep going.

-

Control

-

This u16 bit-flag field is where things get wild.

-
    -
  • Bits 0-4 do nothing
  • -
  • Bit 5-6 control how the destination address changes per transfer: -
      -
    • 0: Offset +1
    • -
    • 1: Offset -1
    • -
    • 2: No Change
    • -
    • 3: Offset +1 and reload when a Repeat starts (below)
    • -
    -
  • -
  • Bit 7-8 similarly control how the source address changes per transfer: -
      -
    • 0: Offset +1
    • -
    • 1: Offset -1
    • -
    • 2: No Change
    • -
    • 3: Prohibited
    • -
    -
  • -
  • Bit 9: enables Repeat mode.
  • -
  • Bit 10: Transfer u16 (false) or u32 (true) data.
  • -
  • Bit 11: "Game Pak DRQ" flag. GBATEK says that this is only allowed for DMA3, -and also your Game Pak hardware must be equipped to use DRQ mode. I don't even -know what DRQ mode is all about, and GBATEK doesn't say much either. If DRQ is -set then you must not set the Repeat bit as well. The gba crate simply -doesn't bother to expose this flag to users.
  • -
  • Bit 12-13: DMA Start: -
      -
    • 0: "Immediate", which is 2 cycles after requested.
    • -
    • 1: VBlank
    • -
    • 2: HBlank
    • -
    • 3: Special, depending on what DMA unit is involved: -
        -
      • DMA0: Prohibited.
      • -
      • DMA1/2: Sound FIFO (see the Sound section)
      • -
      • DMA3: Video Capture, intended for use with the Repeat flag, performs a -transfer per scanline (similar to HBlank) starting at VCOUNT 2 and -stopping at VCOUNT 162. Intended for copying things from ROM or camera -into VRAM.
      • -
      -
    • -
    -
  • -
  • Bit 14: Interrupt upon DMA complete.
  • -
  • Bit 15: Enable this DMA unit.
  • -
-

DMA Life Cycle

-

The general technique for using a DMA unit involves first setting the relevent -source, destination, and count registers, then setting the appropriate control -register value with the Enable bit set.

-

Once the Enable flag is set the appropriate DMA unit will trigger at the -assigned time (Bit 12-13). The CPU's operation is halted while any DMA unit is -active, until the DMA completes its task. If more than one DMA unit is supposed -to be active at once, then the DMA unit with the lower number will activate and -complete before any others.

-

When the DMA triggers via Enable, the Source, Destination, and Count -values are copied from the GBA's registers into the DMA unit's internal -registers. Changes to the DMA unit's internal copy of the data don't affect the -values in the GBA registers. Another Enable will read the same values as -before.

-

If DMA is triggered via having Repeat active then only the Count is copied -in to the DMA unit registers. The Source and Destination are unaffected -during a Repeat. The exception to this is if the destination address control -value (Bits 5-6) are set to 3 (0b11), in which case a Repeat will also -re-copy the Destination as well as the Count.

-

Once a DMA operation completes, the Enable flag of its Control register will -automatically be disabled, unless the Repeat flag is on, in which case the -Enable flag is left active. You will have to manually disable it if you don't -want the DMA to kick in again over and over at the specified starting time.

-

DMA Limitations

-

The DMA units cannot access SRAM at all.

-

If you're using HBlank to access any part of the memory that the display -controller utilizes (OAM, PALRAM, VRAM), you need to have enabled the -"HBlank Interval Free" bit in the Display Control Register (DISPCNT).

-

Whenever DMA is active the CPU is not active, which means that -Interrupts will not fire while DMA is happening. This can -cause any number of hard to track down bugs. Try to limit your use of the DMA -units if you can.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/04-non-video/04-sound.html b/docs/04-non-video/04-sound.html deleted file mode 100644 index 444c6ba..0000000 --- a/docs/04-non-video/04-sound.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - Sound - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Sound

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/04-non-video/05-interrupts.html b/docs/04-non-video/05-interrupts.html deleted file mode 100644 index b351832..0000000 --- a/docs/04-non-video/05-interrupts.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - Interrupts - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Interrupts

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/04-non-video/06-link_cable.html b/docs/04-non-video/06-link_cable.html deleted file mode 100644 index 2d4954b..0000000 --- a/docs/04-non-video/06-link_cable.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - Link Cable - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Link Cable

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/04-non-video/07-game_pak.html b/docs/04-non-video/07-game_pak.html deleted file mode 100644 index a40cd85..0000000 --- a/docs/04-non-video/07-game_pak.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - Game Pak - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Game Pak

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/05-examples/00-index.html b/docs/05-examples/00-index.html deleted file mode 100644 index 321d30b..0000000 --- a/docs/05-examples/00-index.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - Examples - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Examples

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/FontAwesome/css/font-awesome.css b/docs/FontAwesome/css/font-awesome.css deleted file mode 100644 index ee4e978..0000000 --- a/docs/FontAwesome/css/font-awesome.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.4.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"} diff --git a/docs/FontAwesome/fonts/FontAwesome.ttf b/docs/FontAwesome/fonts/FontAwesome.ttf deleted file mode 100644 index d7994e1..0000000 Binary files a/docs/FontAwesome/fonts/FontAwesome.ttf and /dev/null differ diff --git a/docs/FontAwesome/fonts/fontawesome-webfont.eot b/docs/FontAwesome/fonts/fontawesome-webfont.eot deleted file mode 100644 index a30335d..0000000 Binary files a/docs/FontAwesome/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/docs/FontAwesome/fonts/fontawesome-webfont.svg b/docs/FontAwesome/fonts/fontawesome-webfont.svg deleted file mode 100644 index 6fd19ab..0000000 --- a/docs/FontAwesome/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,640 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/FontAwesome/fonts/fontawesome-webfont.ttf b/docs/FontAwesome/fonts/fontawesome-webfont.ttf deleted file mode 100644 index d7994e1..0000000 Binary files a/docs/FontAwesome/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/docs/FontAwesome/fonts/fontawesome-webfont.woff b/docs/FontAwesome/fonts/fontawesome-webfont.woff deleted file mode 100644 index 6fd4ede..0000000 Binary files a/docs/FontAwesome/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/docs/FontAwesome/fonts/fontawesome-webfont.woff2 b/docs/FontAwesome/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 5560193..0000000 Binary files a/docs/FontAwesome/fonts/fontawesome-webfont.woff2 and /dev/null differ diff --git a/docs/ayu-highlight.css b/docs/ayu-highlight.css deleted file mode 100644 index 786063f..0000000 --- a/docs/ayu-highlight.css +++ /dev/null @@ -1,71 +0,0 @@ -/* -Based off of the Ayu theme -Original by Dempfi (https://github.com/dempfi/ayu) -*/ - -.hljs { - display: block; - overflow-x: auto; - background: #191f26; - color: #e6e1cf; - padding: 0.5em; -} - -.hljs-comment, -.hljs-quote, -.hljs-meta { - color: #5c6773; - font-style: italic; -} - -.hljs-variable, -.hljs-template-variable, -.hljs-attribute, -.hljs-attr, -.hljs-regexp, -.hljs-link, -.hljs-selector-id, -.hljs-selector-class { - color: #ff7733; -} - -.hljs-number, -.hljs-builtin-name, -.hljs-literal, -.hljs-type, -.hljs-params { - color: #ffee99; -} - -.hljs-string, -.hljs-bullet { - color: #b8cc52; -} - -.hljs-title, -.hljs-built_in, -.hljs-section { - color: #ffb454; -} - -.hljs-keyword, -.hljs-selector-tag, -.hljs-symbol { - color: #ff7733; -} - -.hljs-name { - color: #36a3d9; -} - -.hljs-tag { - color: #00568d; -} - -.hljs-emphasis { - font-style: italic; -} - -.hljs-strong { - font-weight: bold; -} diff --git a/docs/book.js b/docs/book.js deleted file mode 100644 index c9c2f4d..0000000 --- a/docs/book.js +++ /dev/null @@ -1,600 +0,0 @@ -"use strict"; - -// Fix back button cache problem -window.onunload = function () { }; - -// Global variable, shared between modules -function playpen_text(playpen) { - let code_block = playpen.querySelector("code"); - - if (window.ace && code_block.classList.contains("editable")) { - let editor = window.ace.edit(code_block); - return editor.getValue(); - } else { - return code_block.textContent; - } -} - -(function codeSnippets() { - // Hide Rust code lines prepended with a specific character - var hiding_character = "#"; - - function fetch_with_timeout(url, options, timeout = 6000) { - return Promise.race([ - fetch(url, options), - new Promise((_, reject) => setTimeout(() => reject(new Error('timeout')), timeout)) - ]); - } - - var playpens = Array.from(document.querySelectorAll(".playpen")); - if (playpens.length > 0) { - fetch_with_timeout("https://play.rust-lang.org/meta/crates", { - headers: { - 'Content-Type': "application/json", - }, - method: 'POST', - mode: 'cors', - }) - .then(response => response.json()) - .then(response => { - // get list of crates available in the rust playground - let playground_crates = response.crates.map(item => item["id"]); - playpens.forEach(block => handle_crate_list_update(block, playground_crates)); - }); - } - - function handle_crate_list_update(playpen_block, playground_crates) { - // update the play buttons after receiving the response - update_play_button(playpen_block, playground_crates); - - // and install on change listener to dynamically update ACE editors - if (window.ace) { - let code_block = playpen_block.querySelector("code"); - if (code_block.classList.contains("editable")) { - let editor = window.ace.edit(code_block); - editor.addEventListener("change", function (e) { - update_play_button(playpen_block, playground_crates); - }); - } - } - } - - // updates the visibility of play button based on `no_run` class and - // used crates vs ones available on http://play.rust-lang.org - function update_play_button(pre_block, playground_crates) { - var play_button = pre_block.querySelector(".play-button"); - - // skip if code is `no_run` - if (pre_block.querySelector('code').classList.contains("no_run")) { - play_button.classList.add("hidden"); - return; - } - - // get list of `extern crate`'s from snippet - var txt = playpen_text(pre_block); - var re = /extern\s+crate\s+([a-zA-Z_0-9]+)\s*;/g; - var snippet_crates = []; - var item; - while (item = re.exec(txt)) { - snippet_crates.push(item[1]); - } - - // check if all used crates are available on play.rust-lang.org - var all_available = snippet_crates.every(function (elem) { - return playground_crates.indexOf(elem) > -1; - }); - - if (all_available) { - play_button.classList.remove("hidden"); - } else { - play_button.classList.add("hidden"); - } - } - - function run_rust_code(code_block) { - var result_block = code_block.querySelector(".result"); - if (!result_block) { - result_block = document.createElement('code'); - result_block.className = 'result hljs language-bash'; - - code_block.append(result_block); - } - - let text = playpen_text(code_block); - - var params = { - version: "stable", - optimize: "0", - code: text - }; - - if (text.indexOf("#![feature") !== -1) { - params.version = "nightly"; - } - - result_block.innerText = "Running..."; - - fetch_with_timeout("https://play.rust-lang.org/evaluate.json", { - headers: { - 'Content-Type': "application/json", - }, - method: 'POST', - mode: 'cors', - body: JSON.stringify(params) - }) - .then(response => response.json()) - .then(response => result_block.innerText = response.result) - .catch(error => result_block.innerText = "Playground Communication: " + error.message); - } - - // Syntax highlighting Configuration - hljs.configure({ - tabReplace: ' ', // 4 spaces - languages: [], // Languages used for auto-detection - }); - - if (window.ace) { - // language-rust class needs to be removed for editable - // blocks or highlightjs will capture events - Array - .from(document.querySelectorAll('code.editable')) - .forEach(function (block) { block.classList.remove('language-rust'); }); - - Array - .from(document.querySelectorAll('code:not(.editable)')) - .forEach(function (block) { hljs.highlightBlock(block); }); - } else { - Array - .from(document.querySelectorAll('code')) - .forEach(function (block) { hljs.highlightBlock(block); }); - } - - // Adding the hljs class gives code blocks the color css - // even if highlighting doesn't apply - Array - .from(document.querySelectorAll('code')) - .forEach(function (block) { block.classList.add('hljs'); }); - - Array.from(document.querySelectorAll("code.language-rust")).forEach(function (block) { - - var code_block = block; - var pre_block = block.parentNode; - // hide lines - var lines = code_block.innerHTML.split("\n"); - var first_non_hidden_line = false; - var lines_hidden = false; - var trimmed_line = ""; - - for (var n = 0; n < lines.length; n++) { - trimmed_line = lines[n].trim(); - if (trimmed_line[0] == hiding_character && trimmed_line[1] != hiding_character) { - if (first_non_hidden_line) { - lines[n] = "" + "\n" + lines[n].replace(/(\s*)# ?/, "$1") + ""; - } - else { - lines[n] = "" + lines[n].replace(/(\s*)# ?/, "$1") + "\n" + ""; - } - lines_hidden = true; - } - else if (first_non_hidden_line) { - lines[n] = "\n" + lines[n]; - } - else { - first_non_hidden_line = true; - } - if (trimmed_line[0] == hiding_character && trimmed_line[1] == hiding_character) { - lines[n] = lines[n].replace("##", "#") - } - } - code_block.innerHTML = lines.join(""); - - // If no lines were hidden, return - if (!lines_hidden) { return; } - - var buttons = document.createElement('div'); - buttons.className = 'buttons'; - buttons.innerHTML = ""; - - // add expand button - pre_block.insertBefore(buttons, pre_block.firstChild); - - pre_block.querySelector('.buttons').addEventListener('click', function (e) { - if (e.target.classList.contains('fa-expand')) { - var lines = pre_block.querySelectorAll('span.hidden'); - - e.target.classList.remove('fa-expand'); - e.target.classList.add('fa-compress'); - e.target.title = 'Hide lines'; - e.target.setAttribute('aria-label', e.target.title); - - Array.from(lines).forEach(function (line) { - line.classList.remove('hidden'); - line.classList.add('unhidden'); - }); - } else if (e.target.classList.contains('fa-compress')) { - var lines = pre_block.querySelectorAll('span.unhidden'); - - e.target.classList.remove('fa-compress'); - e.target.classList.add('fa-expand'); - e.target.title = 'Show hidden lines'; - e.target.setAttribute('aria-label', e.target.title); - - Array.from(lines).forEach(function (line) { - line.classList.remove('unhidden'); - line.classList.add('hidden'); - }); - } - }); - }); - - Array.from(document.querySelectorAll('pre code')).forEach(function (block) { - var pre_block = block.parentNode; - if (!pre_block.classList.contains('playpen')) { - var buttons = pre_block.querySelector(".buttons"); - if (!buttons) { - buttons = document.createElement('div'); - buttons.className = 'buttons'; - pre_block.insertBefore(buttons, pre_block.firstChild); - } - - var clipButton = document.createElement('button'); - clipButton.className = 'fa fa-copy clip-button'; - clipButton.title = 'Copy to clipboard'; - clipButton.setAttribute('aria-label', clipButton.title); - clipButton.innerHTML = ''; - - buttons.insertBefore(clipButton, buttons.firstChild); - } - }); - - // Process playpen code blocks - Array.from(document.querySelectorAll(".playpen")).forEach(function (pre_block) { - // Add play button - var buttons = pre_block.querySelector(".buttons"); - if (!buttons) { - buttons = document.createElement('div'); - buttons.className = 'buttons'; - pre_block.insertBefore(buttons, pre_block.firstChild); - } - - var runCodeButton = document.createElement('button'); - runCodeButton.className = 'fa fa-play play-button'; - runCodeButton.hidden = true; - runCodeButton.title = 'Run this code'; - runCodeButton.setAttribute('aria-label', runCodeButton.title); - - var copyCodeClipboardButton = document.createElement('button'); - copyCodeClipboardButton.className = 'fa fa-copy clip-button'; - copyCodeClipboardButton.innerHTML = ''; - copyCodeClipboardButton.title = 'Copy to clipboard'; - copyCodeClipboardButton.setAttribute('aria-label', copyCodeClipboardButton.title); - - buttons.insertBefore(runCodeButton, buttons.firstChild); - buttons.insertBefore(copyCodeClipboardButton, buttons.firstChild); - - runCodeButton.addEventListener('click', function (e) { - run_rust_code(pre_block); - }); - - let code_block = pre_block.querySelector("code"); - if (window.ace && code_block.classList.contains("editable")) { - var undoChangesButton = document.createElement('button'); - undoChangesButton.className = 'fa fa-history reset-button'; - undoChangesButton.title = 'Undo changes'; - undoChangesButton.setAttribute('aria-label', undoChangesButton.title); - - buttons.insertBefore(undoChangesButton, buttons.firstChild); - - undoChangesButton.addEventListener('click', function () { - let editor = window.ace.edit(code_block); - editor.setValue(editor.originalCode); - editor.clearSelection(); - }); - } - }); -})(); - -(function themes() { - var html = document.querySelector('html'); - var themeToggleButton = document.getElementById('theme-toggle'); - var themePopup = document.getElementById('theme-list'); - var themeColorMetaTag = document.querySelector('meta[name="theme-color"]'); - var stylesheets = { - ayuHighlight: document.querySelector("[href$='ayu-highlight.css']"), - tomorrowNight: document.querySelector("[href$='tomorrow-night.css']"), - highlight: document.querySelector("[href$='highlight.css']"), - }; - - function showThemes() { - themePopup.style.display = 'block'; - themeToggleButton.setAttribute('aria-expanded', true); - themePopup.querySelector("button#" + document.body.className).focus(); - } - - function hideThemes() { - themePopup.style.display = 'none'; - themeToggleButton.setAttribute('aria-expanded', false); - themeToggleButton.focus(); - } - - function set_theme(theme) { - let ace_theme; - - if (theme == 'coal' || theme == 'navy') { - stylesheets.ayuHighlight.disabled = true; - stylesheets.tomorrowNight.disabled = false; - stylesheets.highlight.disabled = true; - - ace_theme = "ace/theme/tomorrow_night"; - } else if (theme == 'ayu') { - stylesheets.ayuHighlight.disabled = false; - stylesheets.tomorrowNight.disabled = true; - stylesheets.highlight.disabled = true; - - ace_theme = "ace/theme/tomorrow_night"; - } else { - stylesheets.ayuHighlight.disabled = true; - stylesheets.tomorrowNight.disabled = true; - stylesheets.highlight.disabled = false; - - ace_theme = "ace/theme/dawn"; - } - - setTimeout(function () { - themeColorMetaTag.content = getComputedStyle(document.body).backgroundColor; - }, 1); - - if (window.ace && window.editors) { - window.editors.forEach(function (editor) { - editor.setTheme(ace_theme); - }); - } - - var previousTheme; - try { previousTheme = localStorage.getItem('mdbook-theme'); } catch (e) { } - if (previousTheme === null || previousTheme === undefined) { previousTheme = 'light'; } - - try { localStorage.setItem('mdbook-theme', theme); } catch (e) { } - - document.body.className = theme; - html.classList.remove(previousTheme); - html.classList.add(theme); - } - - // Set theme - var theme; - try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } - if (theme === null || theme === undefined) { theme = 'light'; } - - set_theme(theme); - - themeToggleButton.addEventListener('click', function () { - if (themePopup.style.display === 'block') { - hideThemes(); - } else { - showThemes(); - } - }); - - themePopup.addEventListener('click', function (e) { - var theme = e.target.id || e.target.parentElement.id; - set_theme(theme); - }); - - themePopup.addEventListener('focusout', function(e) { - // e.relatedTarget is null in Safari and Firefox on macOS (see workaround below) - if (!!e.relatedTarget && !themeToggleButton.contains(e.relatedTarget) && !themePopup.contains(e.relatedTarget)) { - hideThemes(); - } - }); - - // Should not be needed, but it works around an issue on macOS & iOS: https://github.com/rust-lang-nursery/mdBook/issues/628 - document.addEventListener('click', function(e) { - if (themePopup.style.display === 'block' && !themeToggleButton.contains(e.target) && !themePopup.contains(e.target)) { - hideThemes(); - } - }); - - document.addEventListener('keydown', function (e) { - if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) { return; } - if (!themePopup.contains(e.target)) { return; } - - switch (e.key) { - case 'Escape': - e.preventDefault(); - hideThemes(); - break; - case 'ArrowUp': - e.preventDefault(); - var li = document.activeElement.parentElement; - if (li && li.previousElementSibling) { - li.previousElementSibling.querySelector('button').focus(); - } - break; - case 'ArrowDown': - e.preventDefault(); - var li = document.activeElement.parentElement; - if (li && li.nextElementSibling) { - li.nextElementSibling.querySelector('button').focus(); - } - break; - case 'Home': - e.preventDefault(); - themePopup.querySelector('li:first-child button').focus(); - break; - case 'End': - e.preventDefault(); - themePopup.querySelector('li:last-child button').focus(); - break; - } - }); -})(); - -(function sidebar() { - var html = document.querySelector("html"); - var sidebar = document.getElementById("sidebar"); - var sidebarLinks = document.querySelectorAll('#sidebar a'); - var sidebarToggleButton = document.getElementById("sidebar-toggle"); - var firstContact = null; - - function showSidebar() { - html.classList.remove('sidebar-hidden') - html.classList.add('sidebar-visible'); - Array.from(sidebarLinks).forEach(function (link) { - link.setAttribute('tabIndex', 0); - }); - sidebarToggleButton.setAttribute('aria-expanded', true); - sidebar.setAttribute('aria-hidden', false); - try { localStorage.setItem('mdbook-sidebar', 'visible'); } catch (e) { } - } - - function hideSidebar() { - html.classList.remove('sidebar-visible') - html.classList.add('sidebar-hidden'); - Array.from(sidebarLinks).forEach(function (link) { - link.setAttribute('tabIndex', -1); - }); - sidebarToggleButton.setAttribute('aria-expanded', false); - sidebar.setAttribute('aria-hidden', true); - try { localStorage.setItem('mdbook-sidebar', 'hidden'); } catch (e) { } - } - - // Toggle sidebar - sidebarToggleButton.addEventListener('click', function sidebarToggle() { - if (html.classList.contains("sidebar-hidden")) { - showSidebar(); - } else if (html.classList.contains("sidebar-visible")) { - hideSidebar(); - } else { - if (getComputedStyle(sidebar)['transform'] === 'none') { - hideSidebar(); - } else { - showSidebar(); - } - } - }); - - document.addEventListener('touchstart', function (e) { - firstContact = { - x: e.touches[0].clientX, - time: Date.now() - }; - }, { passive: true }); - - document.addEventListener('touchmove', function (e) { - if (!firstContact) - return; - - var curX = e.touches[0].clientX; - var xDiff = curX - firstContact.x, - tDiff = Date.now() - firstContact.time; - - if (tDiff < 250 && Math.abs(xDiff) >= 150) { - if (xDiff >= 0 && firstContact.x < Math.min(document.body.clientWidth * 0.25, 300)) - showSidebar(); - else if (xDiff < 0 && curX < 300) - hideSidebar(); - - firstContact = null; - } - }, { passive: true }); - - // Scroll sidebar to current active section - var activeSection = sidebar.querySelector(".active"); - if (activeSection) { - sidebar.scrollTop = activeSection.offsetTop; - } -})(); - -(function chapterNavigation() { - document.addEventListener('keydown', function (e) { - if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) { return; } - if (window.search && window.search.hasFocus()) { return; } - - switch (e.key) { - case 'ArrowRight': - e.preventDefault(); - var nextButton = document.querySelector('.nav-chapters.next'); - if (nextButton) { - window.location.href = nextButton.href; - } - break; - case 'ArrowLeft': - e.preventDefault(); - var previousButton = document.querySelector('.nav-chapters.previous'); - if (previousButton) { - window.location.href = previousButton.href; - } - break; - } - }); -})(); - -(function clipboard() { - var clipButtons = document.querySelectorAll('.clip-button'); - - function hideTooltip(elem) { - elem.firstChild.innerText = ""; - elem.className = 'fa fa-copy clip-button'; - } - - function showTooltip(elem, msg) { - elem.firstChild.innerText = msg; - elem.className = 'fa fa-copy tooltipped'; - } - - var clipboardSnippets = new Clipboard('.clip-button', { - text: function (trigger) { - hideTooltip(trigger); - let playpen = trigger.closest("pre"); - return playpen_text(playpen); - } - }); - - Array.from(clipButtons).forEach(function (clipButton) { - clipButton.addEventListener('mouseout', function (e) { - hideTooltip(e.currentTarget); - }); - }); - - clipboardSnippets.on('success', function (e) { - e.clearSelection(); - showTooltip(e.trigger, "Copied!"); - }); - - clipboardSnippets.on('error', function (e) { - showTooltip(e.trigger, "Clipboard error!"); - }); -})(); - -(function scrollToTop () { - var menuTitle = document.querySelector('.menu-title'); - - menuTitle.addEventListener('click', function () { - document.scrollingElement.scrollTo({ top: 0, behavior: 'smooth' }); - }); -})(); - -(function autoHideMenu() { - var menu = document.getElementById('menu-bar'); - - var previousScrollTop = document.scrollingElement.scrollTop; - - document.addEventListener('scroll', function () { - if (menu.classList.contains('folded') && document.scrollingElement.scrollTop < previousScrollTop) { - menu.classList.remove('folded'); - } else if (!menu.classList.contains('folded') && document.scrollingElement.scrollTop > previousScrollTop) { - menu.classList.add('folded'); - } - - if (!menu.classList.contains('bordered') && document.scrollingElement.scrollTop > 0) { - menu.classList.add('bordered'); - } - - if (menu.classList.contains('bordered') && document.scrollingElement.scrollTop === 0) { - menu.classList.remove('bordered'); - } - - previousScrollTop = document.scrollingElement.scrollTop; - }, { passive: true }); -})(); diff --git a/docs/clipboard.min.js b/docs/clipboard.min.js deleted file mode 100644 index 1993676..0000000 --- a/docs/clipboard.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * clipboard.js v1.6.1 - * https://zenorocha.github.io/clipboard.js - * - * Licensed MIT © Zeno Rocha - */ -!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.Clipboard=e()}}(function(){var e,t,n;return function e(t,n,o){function i(a,c){if(!n[a]){if(!t[a]){var l="function"==typeof require&&require;if(!c&&l)return l(a,!0);if(r)return r(a,!0);var u=new Error("Cannot find module '"+a+"'");throw u.code="MODULE_NOT_FOUND",u}var s=n[a]={exports:{}};t[a][0].call(s.exports,function(e){var n=t[a][1][e];return i(n?n:e)},s,s.exports,e,t,n,o)}return n[a].exports}for(var r="function"==typeof require&&require,a=0;a0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function e(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function e(){var t=this,n="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return t.removeFake()},this.fakeHandler=document.body.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[n?"right":"left"]="-9999px";var o=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.style.top=o+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,document.body.appendChild(this.fakeElem),this.selectedText=(0,i.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function e(){this.fakeHandler&&(document.body.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(document.body.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function e(){this.selectedText=(0,i.default)(this.target),this.copyText()}},{key:"copyText",value:function e(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function e(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function e(){this.target&&this.target.blur(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function e(){this.removeFake()}},{key:"action",set:function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function e(){return this._action}},{key:"target",set:function e(t){if(void 0!==t){if(!t||"object"!==("undefined"==typeof t?"undefined":r(t))||1!==t.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function e(){return this._target}}]),e}();e.exports=c})},{select:5}],8:[function(t,n,o){!function(i,r){if("function"==typeof e&&e.amd)e(["module","./clipboard-action","tiny-emitter","good-listener"],r);else if("undefined"!=typeof o)r(n,t("./clipboard-action"),t("tiny-emitter"),t("good-listener"));else{var a={exports:{}};r(a,i.clipboardAction,i.tinyEmitter,i.goodListener),i.clipboard=a.exports}}(this,function(e,t,n,o){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function l(e,t){var n="data-clipboard-"+e;if(t.hasAttribute(n))return t.getAttribute(n)}var u=i(t),s=i(n),f=i(o),d=function(){function e(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText}},{key:"listenClick",value:function e(t){var n=this;this.listener=(0,f.default)(t,"click",function(e){return n.onClick(e)})}},{key:"onClick",value:function e(t){var n=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new u.default({action:this.action(n),target:this.target(n),text:this.text(n),trigger:n,emitter:this})}},{key:"defaultAction",value:function e(t){return l("action",t)}},{key:"defaultTarget",value:function e(t){var n=l("target",t);if(n)return document.querySelector(n)}},{key:"defaultText",value:function e(t){return l("text",t)}},{key:"destroy",value:function e(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["copy","cut"],n="string"==typeof t?[t]:t,o=!!document.queryCommandSupported;return n.forEach(function(e){o=o&&!!document.queryCommandSupported(e)}),o}}]),t}(s.default);e.exports=h})},{"./clipboard-action":7,"good-listener":4,"tiny-emitter":6}]},{},[8])(8)}); \ No newline at end of file diff --git a/docs/css/chrome.css b/docs/css/chrome.css deleted file mode 100644 index 82883e6..0000000 --- a/docs/css/chrome.css +++ /dev/null @@ -1,417 +0,0 @@ -/* CSS for UI elements (a.k.a. chrome) */ - -@import 'variables.css'; - -::-webkit-scrollbar { - background: var(--bg); -} -::-webkit-scrollbar-thumb { - background: var(--scrollbar); -} - -#searchresults a, -.content a:link, -a:visited, -a > .hljs { - color: var(--links); -} - -/* Menu Bar */ - -#menu-bar { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 101; - margin: auto calc(0px - var(--page-padding)); -} -#menu-bar > #menu-bar-sticky-container { - display: flex; - flex-wrap: wrap; - background-color: var(--bg); - border-bottom-color: var(--bg); - border-bottom-width: 1px; - border-bottom-style: solid; -} -.js #menu-bar > #menu-bar-sticky-container { - transition: transform 0.3s; -} -#menu-bar.bordered > #menu-bar-sticky-container { - border-bottom-color: var(--table-border-color); -} -#menu-bar i, #menu-bar .icon-button { - position: relative; - padding: 0 8px; - z-index: 10; - line-height: 50px; - cursor: pointer; - transition: color 0.5s; -} -@media only screen and (max-width: 420px) { - #menu-bar i, #menu-bar .icon-button { - padding: 0 5px; - } -} - -.icon-button { - border: none; - background: none; - padding: 0; - color: inherit; -} -.icon-button i { - margin: 0; -} - -#print-button { - margin: 0 15px; -} - -html:not(.sidebar-visible) #menu-bar:not(:hover).folded > #menu-bar-sticky-container { - transform: translateY(-60px); -} - -.left-buttons { - display: flex; - margin: 0 5px; -} -.no-js .left-buttons { - display: none; -} - -.menu-title { - display: inline-block; - font-weight: 200; - font-size: 20px; - line-height: 50px; - text-align: center; - margin: 0; - flex: 1; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} -.js .menu-title { - cursor: pointer; -} - -.menu-bar, -.menu-bar:visited, -.nav-chapters, -.nav-chapters:visited, -.mobile-nav-chapters, -.mobile-nav-chapters:visited, -.menu-bar .icon-button, -.menu-bar a i { - color: var(--icons); -} - -.menu-bar i:hover, -.menu-bar .icon-button:hover, -.nav-chapters:hover, -.mobile-nav-chapters i:hover { - color: var(--icons-hover); -} - -/* Nav Icons */ - -.nav-chapters { - font-size: 2.5em; - text-align: center; - text-decoration: none; - - position: fixed; - top: 50px; /* Height of menu-bar */ - bottom: 0; - margin: 0; - max-width: 150px; - min-width: 90px; - - display: flex; - justify-content: center; - align-content: center; - flex-direction: column; - - transition: color 0.5s; -} - -.nav-chapters:hover { text-decoration: none; } - -.nav-wrapper { - margin-top: 50px; - display: none; -} - -.mobile-nav-chapters { - font-size: 2.5em; - text-align: center; - text-decoration: none; - width: 90px; - border-radius: 5px; - background-color: var(--sidebar-bg); -} - -.previous { - float: left; -} - -.next { - float: right; - right: var(--page-padding); -} - -@media only screen and (max-width: 1080px) { - .nav-wide-wrapper { display: none; } - .nav-wrapper { display: block; } -} - -@media only screen and (max-width: 1380px) { - .sidebar-visible .nav-wide-wrapper { display: none; } - .sidebar-visible .nav-wrapper { display: block; } -} - -/* Inline code */ - -:not(pre) > .hljs { - display: inline-block; - vertical-align: middle; - padding: 0.1em 0.3em; - border-radius: 3px; - color: var(--inline-code-color); -} - -a:hover > .hljs { - text-decoration: underline; -} - -pre { - position: relative; -} -pre > .buttons { - position: absolute; - z-index: 100; - right: 5px; - top: 5px; - - color: var(--sidebar-fg); - cursor: pointer; -} -pre > .buttons :hover { - color: var(--sidebar-active); -} -pre > .buttons i { - margin-left: 8px; -} -pre > .buttons button { - color: inherit; - background: transparent; - border: none; - cursor: inherit; -} -pre > .result { - margin-top: 10px; -} - -/* Search */ - -#searchresults a { - text-decoration: none; -} - -mark { - border-radius: 2px; - padding: 0 3px 1px 3px; - margin: 0 -3px -1px -3px; - background-color: var(--search-mark-bg); - transition: background-color 300ms linear; - cursor: pointer; -} - -mark.fade-out { - background-color: rgba(0,0,0,0) !important; - cursor: auto; -} - -.searchbar-outer { - margin-left: auto; - margin-right: auto; - max-width: var(--content-max-width); -} - -#searchbar { - width: 100%; - margin: 5px auto 0px auto; - padding: 10px 16px; - transition: box-shadow 300ms ease-in-out; - border: 1px solid var(--searchbar-border-color); - border-radius: 3px; - background-color: var(--searchbar-bg); - color: var(--searchbar-fg); -} -#searchbar:focus, -#searchbar.active { - box-shadow: 0 0 3px var(--searchbar-shadow-color); -} - -.searchresults-header { - font-weight: bold; - font-size: 1em; - padding: 18px 0 0 5px; - color: var(--searchresults-header-fg); -} - -.searchresults-outer { - margin-left: auto; - margin-right: auto; - max-width: var(--content-max-width); - border-bottom: 1px dashed var(--searchresults-border-color); -} - -ul#searchresults { - list-style: none; - padding-left: 20px; -} -ul#searchresults li { - margin: 10px 0px; - padding: 2px; - border-radius: 2px; -} -ul#searchresults li.focus { - background-color: var(--searchresults-li-bg); -} -ul#searchresults span.teaser { - display: block; - clear: both; - margin: 5px 0 0 20px; - font-size: 0.8em; -} -ul#searchresults span.teaser em { - font-weight: bold; - font-style: normal; -} - -/* Sidebar */ - -.sidebar { - position: fixed; - left: 0; - top: 0; - bottom: 0; - width: var(--sidebar-width); - overflow-y: auto; - padding: 10px 10px; - font-size: 0.875em; - box-sizing: border-box; - -webkit-overflow-scrolling: touch; - overscroll-behavior-y: contain; - background-color: var(--sidebar-bg); - color: var(--sidebar-fg); -} -.js .sidebar { - transition: transform 0.3s; /* Animation: slide away */ -} -.sidebar code { - line-height: 2em; -} -.sidebar-hidden .sidebar { - transform: translateX(calc(0px - var(--sidebar-width))); -} -.sidebar::-webkit-scrollbar { - background: var(--sidebar-bg); -} -.sidebar::-webkit-scrollbar-thumb { - background: var(--scrollbar); -} - -.sidebar-visible .page-wrapper { - transform: translateX(var(--sidebar-width)); -} -@media only screen and (min-width: 620px) { - .sidebar-visible .page-wrapper { - transform: none; - margin-left: var(--sidebar-width); - } -} - -.chapter { - list-style: none outside none; - padding-left: 0; - line-height: 2.2em; -} -.chapter li { - color: var(--sidebar-non-existant); -} -.chapter li a { - color: var(--sidebar-fg); - display: block; - padding: 0; - text-decoration: none; -} -.chapter li a:hover { text-decoration: none } -.chapter li .active, -a:hover { - /* Animate color change */ - color: var(--sidebar-active); -} - -.spacer { - width: 100%; - height: 3px; - margin: 5px 0px; -} -.chapter .spacer { - background-color: var(--sidebar-spacer); -} - -@media (-moz-touch-enabled: 1), (pointer: coarse) { - .chapter li a { padding: 5px 0; } - .spacer { margin: 10px 0; } -} - -.section { - list-style: none outside none; - padding-left: 20px; - line-height: 1.9em; -} - -/* Theme Menu Popup */ - -.theme-popup { - position: absolute; - left: 10px; - top: 50px; - z-index: 1000; - border-radius: 4px; - font-size: 0.7em; - color: var(--fg); - background: var(--theme-popup-bg); - border: 1px solid var(--theme-popup-border); - margin: 0; - padding: 0; - list-style: none; - display: none; -} -.theme-popup .default { - color: var(--icons); -} -.theme-popup .theme { - width: 100%; - border: 0; - margin: 0; - padding: 2px 10px; - line-height: 25px; - white-space: nowrap; - text-align: left; - cursor: pointer; - color: inherit; - background: inherit; - font-size: inherit; -} -.theme-popup .theme:hover { - background-color: var(--theme-hover); -} -.theme-popup .theme:hover:first-child, -.theme-popup .theme:hover:last-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; -} diff --git a/docs/css/general.css b/docs/css/general.css deleted file mode 100644 index aedfb33..0000000 --- a/docs/css/general.css +++ /dev/null @@ -1,144 +0,0 @@ -/* Base styles and content styles */ - -@import 'variables.css'; - -html { - font-family: "Open Sans", sans-serif; - color: var(--fg); - background-color: var(--bg); - text-size-adjust: none; -} - -body { - margin: 0; - font-size: 1rem; - overflow-x: hidden; -} - -code { - font-family: "Source Code Pro", Consolas, "Ubuntu Mono", Menlo, "DejaVu Sans Mono", monospace, monospace; - font-size: 0.875em; /* please adjust the ace font size accordingly in editor.js */ -} - -.left { float: left; } -.right { float: right; } -.hidden { display: none; } -.play-button.hidden { display: none; } - -h2, h3 { margin-top: 2.5em; } -h4, h5 { margin-top: 2em; } - -.header + .header h3, -.header + .header h4, -.header + .header h5 { - margin-top: 1em; -} - -a.header:target h1:before, -a.header:target h2:before, -a.header:target h3:before, -a.header:target h4:before { - display: inline-block; - content: "»"; - margin-left: -30px; - width: 30px; -} - -.page { - outline: 0; - padding: 0 var(--page-padding); -} -.page-wrapper { - box-sizing: border-box; -} -.js .page-wrapper { - transition: margin-left 0.3s ease, transform 0.3s ease; /* Animation: slide away */ -} - -.content { - overflow-y: auto; - padding: 0 15px; - padding-bottom: 50px; -} -.content main { - margin-left: auto; - margin-right: auto; - max-width: var(--content-max-width); -} -.content a { text-decoration: none; } -.content a:hover { text-decoration: underline; } -.content img { max-width: 100%; } -.content .header:link, -.content .header:visited { - color: var(--fg); -} -.content .header:link, -.content .header:visited:hover { - text-decoration: none; -} - -table { - margin: 0 auto; - border-collapse: collapse; -} -table td { - padding: 3px 20px; - border: 1px var(--table-border-color) solid; -} -table thead { - background: var(--table-header-bg); -} -table thead td { - font-weight: 700; - border: none; -} -table thead tr { - border: 1px var(--table-header-bg) solid; -} -/* Alternate background colors for rows */ -table tbody tr:nth-child(2n) { - background: var(--table-alternate-bg); -} - - -blockquote { - margin: 20px 0; - padding: 0 20px; - color: var(--fg); - background-color: var(--quote-bg); - border-top: .1em solid var(--quote-border); - border-bottom: .1em solid var(--quote-border); -} - - -:not(.footnote-definition) + .footnote-definition, -.footnote-definition + :not(.footnote-definition) { - margin-top: 2em; -} -.footnote-definition { - font-size: 0.9em; - margin: 0.5em 0; -} -.footnote-definition p { - display: inline; -} - -.tooltiptext { - position: absolute; - visibility: hidden; - color: #fff; - background-color: #333; - transform: translateX(-50%); /* Center by moving tooltip 50% of its width left */ - left: -8px; /* Half of the width of the icon */ - top: -35px; - font-size: 0.8em; - text-align: center; - border-radius: 6px; - padding: 5px 8px; - margin: 5px; - z-index: 1000; -} -.tooltipped .tooltiptext { - visibility: visible; -} - \ No newline at end of file diff --git a/docs/css/print.css b/docs/css/print.css deleted file mode 100644 index 5e690f7..0000000 --- a/docs/css/print.css +++ /dev/null @@ -1,54 +0,0 @@ - -#sidebar, -#menu-bar, -.nav-chapters, -.mobile-nav-chapters { - display: none; -} - -#page-wrapper.page-wrapper { - transform: none; - margin-left: 0px; - overflow-y: initial; -} - -#content { - max-width: none; - margin: 0; - padding: 0; -} - -.page { - overflow-y: initial; -} - -code { - background-color: #666666; - border-radius: 5px; - - /* Force background to be printed in Chrome */ - -webkit-print-color-adjust: exact; -} - -pre > .buttons { - z-index: 2; -} - -a, a:visited, a:active, a:hover { - color: #4183c4; - text-decoration: none; -} - -h1, h2, h3, h4, h5, h6 { - page-break-inside: avoid; - page-break-after: avoid; -} - -pre, code { - page-break-inside: avoid; - white-space: pre-wrap; -} - -.fa { - display: none !important; -} diff --git a/docs/css/variables.css b/docs/css/variables.css deleted file mode 100644 index 29daa07..0000000 --- a/docs/css/variables.css +++ /dev/null @@ -1,210 +0,0 @@ - -/* Globals */ - -:root { - --sidebar-width: 300px; - --page-padding: 15px; - --content-max-width: 750px; -} - -/* Themes */ - -.ayu { - --bg: hsl(210, 25%, 8%); - --fg: #c5c5c5; - - --sidebar-bg: #14191f; - --sidebar-fg: #c8c9db; - --sidebar-non-existant: #5c6773; - --sidebar-active: #ffb454; - --sidebar-spacer: #2d334f; - - --scrollbar: var(--sidebar-fg); - - --icons: #737480; - --icons-hover: #b7b9cc; - - --links: #0096cf; - - --inline-code-color: #ffb454; - - --theme-popup-bg: #14191f; - --theme-popup-border: #5c6773; - --theme-hover: #191f26; - - --quote-bg: hsl(226, 15%, 17%); - --quote-border: hsl(226, 15%, 22%); - - --table-border-color: hsl(210, 25%, 13%); - --table-header-bg: hsl(210, 25%, 28%); - --table-alternate-bg: hsl(210, 25%, 11%); - - --searchbar-border-color: #848484; - --searchbar-bg: #424242; - --searchbar-fg: #fff; - --searchbar-shadow-color: #d4c89f; - --searchresults-header-fg: #666; - --searchresults-border-color: #888; - --searchresults-li-bg: #252932; - --search-mark-bg: #e3b171; -} - -.coal { - --bg: hsl(200, 7%, 8%); - --fg: #98a3ad; - - --sidebar-bg: #292c2f; - --sidebar-fg: #a1adb8; - --sidebar-non-existant: #505254; - --sidebar-active: #3473ad; - --sidebar-spacer: #393939; - - --scrollbar: var(--sidebar-fg); - - --icons: #43484d; - --icons-hover: #b3c0cc; - - --links: #2b79a2; - - --inline-code-color: #c5c8c6;; - - --theme-popup-bg: #141617; - --theme-popup-border: #43484d; - --theme-hover: #1f2124; - - --quote-bg: hsl(234, 21%, 18%); - --quote-border: hsl(234, 21%, 23%); - - --table-border-color: hsl(200, 7%, 13%); - --table-header-bg: hsl(200, 7%, 28%); - --table-alternate-bg: hsl(200, 7%, 11%); - - --searchbar-border-color: #aaa; - --searchbar-bg: #b7b7b7; - --searchbar-fg: #000; - --searchbar-shadow-color: #aaa; - --searchresults-header-fg: #666; - --searchresults-border-color: #98a3ad; - --searchresults-li-bg: #2b2b2f; - --search-mark-bg: #355c7d; -} - -.light { - --bg: hsl(0, 0%, 100%); - --fg: #333333; - - --sidebar-bg: #fafafa; - --sidebar-fg: #364149; - --sidebar-non-existant: #aaaaaa; - --sidebar-active: #008cff; - --sidebar-spacer: #f4f4f4; - - --scrollbar: #cccccc; - - --icons: #cccccc; - --icons-hover: #333333; - - --links: #4183c4; - - --inline-code-color: #6e6b5e; - - --theme-popup-bg: #fafafa; - --theme-popup-border: #cccccc; - --theme-hover: #e6e6e6; - - --quote-bg: hsl(197, 37%, 96%); - --quote-border: hsl(197, 37%, 91%); - - --table-border-color: hsl(0, 0%, 95%); - --table-header-bg: hsl(0, 0%, 80%); - --table-alternate-bg: hsl(0, 0%, 97%); - - --searchbar-border-color: #aaa; - --searchbar-bg: #fafafa; - --searchbar-fg: #000; - --searchbar-shadow-color: #aaa; - --searchresults-header-fg: #666; - --searchresults-border-color: #888; - --searchresults-li-bg: #e4f2fe; - --search-mark-bg: #a2cff5; -} - -.navy { - --bg: hsl(226, 23%, 11%); - --fg: #bcbdd0; - - --sidebar-bg: #282d3f; - --sidebar-fg: #c8c9db; - --sidebar-non-existant: #505274; - --sidebar-active: #2b79a2; - --sidebar-spacer: #2d334f; - - --scrollbar: var(--sidebar-fg); - - --icons: #737480; - --icons-hover: #b7b9cc; - - --links: #2b79a2; - - --inline-code-color: #c5c8c6;; - - --theme-popup-bg: #161923; - --theme-popup-border: #737480; - --theme-hover: #282e40; - - --quote-bg: hsl(226, 15%, 17%); - --quote-border: hsl(226, 15%, 22%); - - --table-border-color: hsl(226, 23%, 16%); - --table-header-bg: hsl(226, 23%, 31%); - --table-alternate-bg: hsl(226, 23%, 14%); - - --searchbar-border-color: #aaa; - --searchbar-bg: #aeaec6; - --searchbar-fg: #000; - --searchbar-shadow-color: #aaa; - --searchresults-header-fg: #5f5f71; - --searchresults-border-color: #5c5c68; - --searchresults-li-bg: #242430; - --search-mark-bg: #a2cff5; -} - -.rust { - --bg: hsl(60, 9%, 87%); - --fg: #262625; - - --sidebar-bg: #3b2e2a; - --sidebar-fg: #c8c9db; - --sidebar-non-existant: #505254; - --sidebar-active: #e69f67; - --sidebar-spacer: #45373a; - - --scrollbar: var(--sidebar-fg); - - --icons: #737480; - --icons-hover: #262625; - - --links: #2b79a2; - - --inline-code-color: #6e6b5e; - - --theme-popup-bg: #e1e1db; - --theme-popup-border: #b38f6b; - --theme-hover: #99908a; - - --quote-bg: hsl(60, 5%, 75%); - --quote-border: hsl(60, 5%, 70%); - - --table-border-color: hsl(60, 9%, 82%); - --table-header-bg: #b3a497; - --table-alternate-bg: hsl(60, 9%, 84%); - - --searchbar-border-color: #aaa; - --searchbar-bg: #fafafa; - --searchbar-fg: #000; - --searchbar-shadow-color: #aaa; - --searchresults-header-fg: #666; - --searchresults-border-color: #888; - --searchresults-li-bg: #dec2a2; - --search-mark-bg: #e69f67; -} diff --git a/docs/elasticlunr.min.js b/docs/elasticlunr.min.js deleted file mode 100644 index 94b20dd..0000000 --- a/docs/elasticlunr.min.js +++ /dev/null @@ -1,10 +0,0 @@ -/** - * elasticlunr - http://weixsong.github.io - * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.9.5 - * - * Copyright (C) 2017 Oliver Nightingale - * Copyright (C) 2017 Wei Song - * MIT Licensed - * @license - */ -!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o/g,">")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0===t.index}function a(e){return k.test(e)}function i(e){var n,t,r,i,o=e.className+" ";if(o+=e.parentNode?e.parentNode.className:"",t=B.exec(o))return w(t[1])?t[1]:"no-highlight";for(o=o.split(/\s+/),n=0,r=o.length;r>n;n++)if(i=o[n],a(i)||w(i))return i}function o(e){var n,t={},r=Array.prototype.slice.call(arguments,1);for(n in e)t[n]=e[n];return r.forEach(function(e){for(n in e)t[n]=e[n]}),t}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3===i.nodeType?a+=i.nodeValue.length:1===i.nodeType&&(n.push({event:"start",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:"stop",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!==r[0].offset?e[0].offset"}function u(e){s+=""}function c(e){("start"===e.event?o:u)(e.node)}for(var l=0,s="",f=[];e.length||r.length;){var g=i();if(s+=n(a.substring(l,g[0].offset)),l=g[0].offset,g===e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g===e&&g.length&&g[0].offset===l);f.reverse().forEach(o)}else"start"===g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return s+n(a.substr(l))}function l(e){return e.v&&!e.cached_variants&&(e.cached_variants=e.v.map(function(n){return o(e,{v:null},n)})),e.cached_variants||e.eW&&[o(e)]||[e]}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),"m"+(e.cI?"i":"")+(r?"g":""))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var o={},u=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(" ").forEach(function(e){var t=e.split("|");o[t[0]]=[n,t[1]?Number(t[1]):1]})};"string"==typeof a.k?u("keyword",a.k):x(a.k).forEach(function(e){u(e,a.k[e])}),a.k=o}a.lR=t(a.l||/\w+/,!0),i&&(a.bK&&(a.b="\\b("+a.bK.split(" ").join("|")+")\\b"),a.b||(a.b=/\B|\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\B|\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||"",a.eW&&i.tE&&(a.tE+=(a.e?"|":"")+i.tE)),a.i&&(a.iR=t(a.i)),null==a.r&&(a.r=1),a.c||(a.c=[]),a.c=Array.prototype.concat.apply([],a.c.map(function(e){return l("self"===e?a:e)})),a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var c=a.c.map(function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=c.length?t(c.join("|"),!0):{exec:function(){return null}}}}r(e)}function f(e,t,a,i){function o(e,n){var t,a;for(t=0,a=n.c.length;a>t;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function l(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function p(e,n,t,r){var a=r?"":I.classPrefix,i='',i+n+o}function h(){var e,t,r,a;if(!E.k)return n(k);for(a="",t=0,E.lR.lastIndex=0,r=E.lR.exec(k);r;)a+=n(k.substring(t,r.index)),e=l(E,r),e?(B+=e[1],a+=p(e[0],n(r[0]))):a+=n(r[0]),t=E.lR.lastIndex,r=E.lR.exec(k);return a+n(k.substr(t))}function d(){var e="string"==typeof E.sL;if(e&&!y[E.sL])return n(k);var t=e?f(E.sL,k,!0,x[E.sL]):g(k,E.sL.length?E.sL:void 0);return E.r>0&&(B+=t.r),e&&(x[E.sL]=t.top),p(t.language,t.value,!1,!0)}function b(){L+=null!=E.sL?d():h(),k=""}function v(e){L+=e.cN?p(e.cN,"",!0):"",E=Object.create(e,{parent:{value:E}})}function m(e,n){if(k+=e,null==n)return b(),0;var t=o(n,E);if(t)return t.skip?k+=n:(t.eB&&(k+=n),b(),t.rB||t.eB||(k=n)),v(t,n),t.rB?0:n.length;var r=u(E,n);if(r){var a=E;a.skip?k+=n:(a.rE||a.eE||(k+=n),b(),a.eE&&(k=n));do E.cN&&(L+=C),E.skip||(B+=E.r),E=E.parent;while(E!==r.parent);return r.starts&&v(r.starts,""),a.rE?0:n.length}if(c(n,E))throw new Error('Illegal lexeme "'+n+'" for mode "'+(E.cN||"")+'"');return k+=n,n.length||1}var N=w(e);if(!N)throw new Error('Unknown language: "'+e+'"');s(N);var R,E=i||N,x={},L="";for(R=E;R!==N;R=R.parent)R.cN&&(L=p(R.cN,"",!0)+L);var k="",B=0;try{for(var M,j,O=0;;){if(E.t.lastIndex=O,M=E.t.exec(t),!M)break;j=m(t.substring(O,M.index),M[0]),O=M.index+j}for(m(t.substr(O)),R=E;R.parent;R=R.parent)R.cN&&(L+=C);return{r:B,value:L,language:e,top:E}}catch(T){if(T.message&&-1!==T.message.indexOf("Illegal"))return{r:0,value:n(t)};throw T}}function g(e,t){t=t||I.languages||x(y);var r={r:0,value:n(e)},a=r;return t.filter(w).forEach(function(n){var t=f(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}),a.language&&(r.second_best=a),r}function p(e){return I.tabReplace||I.useBR?e.replace(M,function(e,n){return I.useBR&&"\n"===e?"
":I.tabReplace?n.replace(/\t/g,I.tabReplace):""}):e}function h(e,n,t){var r=n?L[n]:t,a=[e.trim()];return e.match(/\bhljs\b/)||a.push("hljs"),-1===e.indexOf(r)&&a.push(r),a.join(" ").trim()}function d(e){var n,t,r,o,l,s=i(e);a(s)||(I.useBR?(n=document.createElementNS("http://www.w3.org/1999/xhtml","div"),n.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")):n=e,l=n.textContent,r=s?f(s,l,!0):g(l),t=u(n),t.length&&(o=document.createElementNS("http://www.w3.org/1999/xhtml","div"),o.innerHTML=r.value,r.value=c(t,u(o),l)),r.value=p(r.value),e.innerHTML=r.value,e.className=h(e.className,s,r.language),e.result={language:r.language,re:r.r},r.second_best&&(e.second_best={language:r.second_best.language,re:r.second_best.r}))}function b(e){I=o(I,e)}function v(){if(!v.called){v.called=!0;var e=document.querySelectorAll("pre code");E.forEach.call(e,d)}}function m(){addEventListener("DOMContentLoaded",v,!1),addEventListener("load",v,!1)}function N(n,t){var r=y[n]=t(e);r.aliases&&r.aliases.forEach(function(e){L[e]=n})}function R(){return x(y)}function w(e){return e=(e||"").toLowerCase(),y[e]||y[L[e]]}var E=[],x=Object.keys,y={},L={},k=/^(no-?highlight|plain|text)$/i,B=/\blang(?:uage)?-([\w-]+)\b/i,M=/((^(<[^>]+>|\t|)+|(?:\n)))/gm,C="
",I={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0};return e.highlight=f,e.highlightAuto=g,e.fixMarkup=p,e.highlightBlock=d,e.configure=b,e.initHighlighting=v,e.initHighlightingOnLoad=m,e.registerLanguage=N,e.listLanguages=R,e.getLanguage=w,e.inherit=o,e.IR="[a-zA-Z]\\w*",e.UIR="[a-zA-Z_]\\w*",e.NR="\\b\\d+(\\.\\d+)?",e.CNR="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",e.BNR="\\b(0b[01]+)",e.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",e.BE={b:"\\\\[\\s\\S]",r:0},e.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[e.BE]},e.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[e.BE]},e.PWM={b:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},e.C=function(n,t,r){var a=e.inherit({cN:"comment",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:"doctag",b:"(?:TODO|FIXME|NOTE|BUG|XXX):",r:0}),a},e.CLCM=e.C("//","$"),e.CBCM=e.C("/\\*","\\*/"),e.HCM=e.C("#","$"),e.NM={cN:"number",b:e.NR,r:0},e.CNM={cN:"number",b:e.CNR,r:0},e.BNM={cN:"number",b:e.BNR,r:0},e.CSSNM={cN:"number",b:e.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},e.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[e.BE,{b:/\[/,e:/\]/,r:0,c:[e.BE]}]},e.TM={cN:"title",b:e.IR,r:0},e.UTM={cN:"title",b:e.UIR,r:0},e.METHOD_GUARD={b:"\\.\\s*"+e.UIR,r:0},e});hljs.registerLanguage("diff",function(e){return{aliases:["patch"],c:[{cN:"meta",r:10,v:[{b:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"comment",v:[{b:/Index: /,e:/$/},{b:/={3,}/,e:/$/},{b:/^\-{3}/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+{3}/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"addition",b:"^\\!",e:"$"}]}});hljs.registerLanguage("nginx",function(e){var r={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},b={eW:!0,l:"[a-z/_]+",k:{literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,r],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[r]},{cN:"regexp",c:[e.BE,r],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},r]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s+{",rB:!0,e:"{",c:[{cN:"section",b:e.UIR}],r:0},{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"attribute",b:e.UIR,starts:b}],r:0}],i:"[^\\s\\}]"}});hljs.registerLanguage("objectivec",function(e){var t={cN:"built_in",b:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},_={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},i=/[a-zA-Z@][a-zA-Z0-9_]*/,n="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:_,l:i,i:""}]}]},{cN:"class",b:"("+n.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:n,l:i,c:[e.UTM]},{b:"\\."+e.UIR,r:0}]}});hljs.registerLanguage("xml",function(s){var e="[A-Za-z0-9\\._:-]+",t={eW:!0,i:/`]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist"],cI:!0,c:[{cN:"meta",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},s.C("",{r:10}),{b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{b:/<\?(php)?/,e:/\?>/,sL:"php",c:[{b:"/\\*",e:"\\*/",skip:!0}]},{cN:"tag",b:"|$)",e:">",k:{name:"style"},c:[t],starts:{e:"",rE:!0,sL:["css","xml"]}},{cN:"tag",b:"|$)",e:">",k:{name:"script"},c:[t],starts:{e:"",rE:!0,sL:["actionscript","javascript","handlebars","xml"]}},{cN:"meta",v:[{b:/<\?xml/,e:/\?>/,r:10},{b:/<\?\w+/,e:/\?>/}]},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},t]}]}});hljs.registerLanguage("handlebars",function(e){var a={"builtin-name":"each in with if else unless bindattr action collection debugger log outlet template unbound view yield"};return{aliases:["hbs","html.hbs","html.handlebars"],cI:!0,sL:"xml",c:[e.C("{{!(--)?","(--)?}}"),{cN:"template-tag",b:/\{\{[#\/]/,e:/\}\}/,c:[{cN:"name",b:/[a-zA-Z\.-]+/,k:a,starts:{eW:!0,r:0,c:[e.QSM]}}]},{cN:"template-variable",b:/\{\{/,e:/\}\}/,k:a}]}});hljs.registerLanguage("ini",function(e){var b={cN:"string",c:[e.BE],v:[{b:"'''",e:"'''",r:10},{b:'"""',e:'"""',r:10},{b:'"',e:'"'},{b:"'",e:"'"}]};return{aliases:["toml"],cI:!0,i:/\S/,c:[e.C(";","$"),e.HCM,{cN:"section",b:/^\s*\[+/,e:/\]+/},{b:/^[a-z0-9\[\]_-]+\s*=\s*/,e:"$",rB:!0,c:[{cN:"attr",b:/[a-z0-9\[\]_-]+/},{b:/=/,eW:!0,r:0,c:[{cN:"literal",b:/\bon|off|true|false|yes|no\b/},{cN:"variable",v:[{b:/\$[\w\d"][\w\d_]*/},{b:/\$\{(.*?)}/}]},b,{cN:"number",b:/([\+\-]+)?[\d]+_[\d_]+/},e.NM]}]}]}});hljs.registerLanguage("javascript",function(e){var r="[A-Za-z$_][0-9A-Za-z$_]*",t={keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},a={cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},n={cN:"subst",b:"\\$\\{",e:"\\}",k:t,c:[]},c={cN:"string",b:"`",e:"`",c:[e.BE,n]};n.c=[e.ASM,e.QSM,c,a,e.RM];var s=n.c.concat([e.CBCM,e.CLCM]);return{aliases:["js","jsx"],k:t,c:[{cN:"meta",r:10,b:/^\s*['"]use (strict|asm)['"]/},{cN:"meta",b:/^#!/,e:/$/},e.ASM,e.QSM,c,e.CLCM,e.CBCM,a,{b:/[{,]\s*/,r:0,c:[{b:r+"\\s*:",rB:!0,r:0,c:[{cN:"attr",b:r,r:0}]}]},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+r+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:r},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,c:s}]}]},{b://,sL:"xml",c:[{b:/<\w+\s*\/>/,skip:!0},{b:/<\w+/,e:/(\/\w+|\w+\/)>/,skip:!0,c:[{b:/<\w+\s*\/>/,skip:!0},"self"]}]}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:r}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:s}],i:/\[|%/},{b:/\$[(.]/},e.METHOD_GUARD,{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]},{bK:"constructor",e:/\{/,eE:!0}],i:/#(?!!)/}});hljs.registerLanguage("python",function(e){var r={keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},b={cN:"meta",b:/^(>>>|\.\.\.) /},c={cN:"subst",b:/\{/,e:/\}/,k:r,i:/#/},a={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[b],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[b],r:10},{b:/(fr|rf|f)'''/,e:/'''/,c:[b,c]},{b:/(fr|rf|f)"""/,e:/"""/,c:[b,c]},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},{b:/(fr|rf|f)'/,e:/'/,c:[c]},{b:/(fr|rf|f)"/,e:/"/,c:[c]},e.ASM,e.QSM]},s={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},i={cN:"params",b:/\(/,e:/\)/,c:["self",b,s,a]};return c.c=[a,s,b],{aliases:["py","gyp"],k:r,i:/(<\/|->|\?)|=>/,c:[b,s,a,e.HCM,{v:[{cN:"function",bK:"def"},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,i,{b:/->/,eW:!0,k:"None"}]},{cN:"meta",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}});hljs.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"^```w*s*$",e:"^```s*$"},{b:"`.+?`"},{b:"^( {4}| )",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:/^\[[^\n]+\]:/,rB:!0,c:[{cN:"symbol",b:/\[/,e:/\]/,eB:!0,eE:!0},{cN:"link",b:/:\s*/,e:/$/,eB:!0}]}]}});hljs.registerLanguage("php",function(e){var c={b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},i={cN:"meta",b:/<\?(php)?|\?>/},t={cN:"string",c:[e.BE,i],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},a={v:[e.BNM,e.CNM]};return{aliases:["php3","php4","php5","php6"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.HCM,e.C("//","$",{c:[i]}),e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},i,{cN:"keyword",b:/\$this\b/},c,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",c,e.CBCM,t,a]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},t,a]}});hljs.registerLanguage("d",function(e){var t={keyword:"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__",built_in:"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring",literal:"false null true"},r="(0|[1-9][\\d_]*)",a="(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)",i="0[bB][01_]+",n="([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)",_="0[xX]"+n,c="([eE][+-]?"+a+")",d="("+a+"(\\.\\d*|"+c+")|\\d+\\."+a+a+"|\\."+r+c+"?)",o="(0[xX]("+n+"\\."+n+"|\\.?"+n+")[pP][+-]?"+a+")",s="("+r+"|"+i+"|"+_+")",l="("+o+"|"+d+")",u="\\\\(['\"\\?\\\\abfnrtv]|u[\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\dA-Fa-f]{2}|U[\\dA-Fa-f]{8})|&[a-zA-Z\\d]{2,};",b={cN:"number",b:"\\b"+s+"(L|u|U|Lu|LU|uL|UL)?",r:0},f={cN:"number",b:"\\b("+l+"([fF]|L|i|[fF]i|Li)?|"+s+"(i|[fF]i|Li))",r:0},g={cN:"string",b:"'("+u+"|.)",e:"'",i:"."},h={b:u,r:0},p={cN:"string",b:'"',c:[h],e:'"[cwd]?'},m={cN:"string",b:'[rq]"',e:'"[cwd]?',r:5},w={cN:"string",b:"`",e:"`[cwd]?"},N={cN:"string",b:'x"[\\da-fA-F\\s\\n\\r]*"[cwd]?',r:10},A={cN:"string",b:'q"\\{',e:'\\}"'},F={cN:"meta",b:"^#!",e:"$",r:5},y={cN:"meta",b:"#(line)",e:"$",r:5},L={cN:"keyword",b:"@[a-zA-Z_][a-zA-Z_\\d]*"},v=e.C("\\/\\+","\\+\\/",{c:["self"],r:10});return{l:e.UIR,k:t,c:[e.CLCM,e.CBCM,v,N,p,m,w,A,f,b,g,F,y,L]}});hljs.registerLanguage("json",function(e){var i={literal:"true false null"},n=[e.QSM,e.CNM],r={e:",",eW:!0,eE:!0,c:n,k:i},t={b:"{",e:"}",c:[{cN:"attr",b:/"/,e:/"/,c:[e.BE],i:"\\n"},e.inherit(r,{b:/:/})],i:"\\S"},c={b:"\\[",e:"\\]",c:[e.inherit(r)],i:"\\S"};return n.splice(n.length,0,t,c),{c:n,k:i,i:"\\S"}});hljs.registerLanguage("go",function(e){var t={keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",literal:"true false iota nil",built_in:"append cap close complex copy imag len make new panic print println real recover delete"};return{aliases:["golang"],k:t,i:"{",e:"}"},n={v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},i=[e.BE,r,n],o=[n,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),s,{cN:"string",c:i,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"function",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",eE:!0,r:5,c:[e.TM]},{b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=o,s.c=o,{aliases:["pl","pm"],l:/[\w\.]+/,k:t,c:o}});hljs.registerLanguage("rust",function(e){var t="([ui](8|16|32|64|128|size)|f(32|64))?",r="alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self Self sizeof static struct super trait true type typeof unsafe unsized use virtual while where yield move default",n="drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!";return{aliases:["rs"],k:{keyword:r,literal:"true false Some None Ok Err",built_in:n},l:e.IR+"!?",i:""}]}});hljs.registerLanguage("ruby",function(e){var b="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},c={cN:"doctag",b:"@[A-Za-z]+"},a={b:"#<",e:">"},s=[e.C("#","$",{c:[c]}),e.C("^\\=begin","^\\=end",{c:[c],r:10}),e.C("^__END__","\\n$")],n={cN:"subst",b:"#\\{",e:"}",k:r},t={cN:"string",c:[e.BE,n],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{b:/<<(-?)\w+$/,e:/^\s*\w+$/}]},i={cN:"params",b:"\\(",e:"\\)",endsParent:!0,k:r},d=[t,a,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<\\s*",c:[{b:"("+e.IR+"::)?"+e.IR}]}].concat(s)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:b}),i].concat(s)},{b:e.IR+"::"},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":(?!\\s)",c:[t,{b:b}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{cN:"params",b:/\|/,e:/\|/,k:r},{b:"("+e.RSR+"|unless)\\s*",k:"unless",c:[a,{cN:"regexp",c:[e.BE,n],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(s),r:0}].concat(s);n.c=d,i.c=d;var l="[>?]>",o="[\\w#]+\\(\\w+\\):\\d+:\\d+>",u="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",w=[{b:/^\s*=>/,starts:{e:"$",c:d}},{cN:"meta",b:"^("+l+"|"+o+"|"+u+")",starts:{e:"$",c:d}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,i:/\/\*/,c:s.concat(w).concat(d)}});hljs.registerLanguage("makefile",function(e){var i={cN:"variable",v:[{b:"\\$\\("+e.UIR+"\\)",c:[e.BE]},{b:/\$[@%] *$",rE:!0,c:l.c,e:t.v[0].b},{b:"<%[%=-]?",e:"[%-]?%>",sL:"ruby",eB:!0,eE:!0,r:0},{cN:"type",b:"!!"+e.UIR},{cN:"meta",b:"&"+e.UIR+"$"},{cN:"meta",b:"\\*"+e.UIR+"$"},{cN:"bullet",b:"^ *-",r:0},e.HCM,{bK:b,k:{literal:b}},e.CNM,l]}});hljs.registerLanguage("css",function(e){var c="[a-zA-Z-][a-zA-Z0-9_-]*",t={b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\w-]+\(/,rB:!0,c:[{cN:"built_in",b:/[\w-]+/},{b:/\(/,e:/\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"number",b:"#[0-9A-Fa-f]+"},{cN:"meta",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,{cN:"selector-id",b:/#[A-Za-z0-9_-]+/},{cN:"selector-class",b:/\.[A-Za-z0-9_-]+/},{cN:"selector-attr",b:/\[/,e:/\]/,i:"$"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{b:"@",e:"[{;]",i:/:/,c:[{cN:"keyword",b:/\w+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:"selector-tag",b:c,r:0},{b:"{",e:"}",i:/\S/,c:[e.CBCM,t]}]}});hljs.registerLanguage("java",function(e){var a="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",t=a+"(<"+a+"(\\s*,\\s*"+a+")*>)?",r="false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",s="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",c={cN:"number",b:s,r:0};return{aliases:["jsp"],k:r,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"("+t+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},c,{cN:"meta",b:"@[A-Za-z]+"}]}});hljs.registerLanguage("armasm",function(s){return{cI:!0,aliases:["arm"],l:"\\.?"+s.IR,k:{meta:".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND ",built_in:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @"},c:[{cN:"keyword",b:"\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?",e:"\\s"},s.C("[;@]","$",{r:0}),s.CBCM,s.QSM,{cN:"string",b:"'",e:"[^\\\\]'",r:0},{cN:"title",b:"\\|",e:"\\|",i:"\\n",r:0},{cN:"number",v:[{b:"[#$=]?0x[0-9a-f]+"},{b:"[#$=]?0b[01]+"},{b:"[#$=]\\d+"},{b:"\\b\\d+"}],r:0},{cN:"symbol",v:[{b:"^[a-z_\\.\\$][a-z0-9_\\.\\$]+"},{b:"^\\s*[a-z_\\.\\$][a-z0-9_\\.\\$]+:"},{b:"[=#]\\w+"}],r:0}]}});hljs.registerLanguage("swift",function(e){var i={keyword:"__COLUMN__ __FILE__ __FUNCTION__ __LINE__ as as! as? associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false fileprivate final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating open operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet",literal:"true false nil",built_in:"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip"},t={cN:"type",b:"\\b[A-Z][\\wÀ-ʸ']*",r:0},n=e.C("/\\*","\\*/",{c:["self"]}),r={cN:"subst",b:/\\\(/,e:"\\)",k:i,c:[]},a={cN:"number",b:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",r:0},o=e.inherit(e.QSM,{c:[r,e.BE]});return r.c=[a],{k:i,c:[o,e.CLCM,n,t,a,{cN:"function",bK:"func",e:"{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{b://},{cN:"params",b:/\(/,e:/\)/,endsParent:!0,k:i,c:["self",a,o,e.CBCM,{b:":"}],i:/["']/}],i:/\[|%/},{cN:"class",bK:"struct protocol class extension enum",k:i,e:"\\{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/})]},{cN:"meta",b:"(@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain)"},{bK:"import",e:/$/,c:[e.CLCM,n]}]}});hljs.registerLanguage("cpp",function(t){var e={cN:"keyword",b:"\\b[a-z\\d_]*_t\\b"},r={cN:"string",v:[{b:'(u8?|U)?L?"',e:'"',i:"\\n",c:[t.BE]},{b:'(u8?|U)?R"',e:'"',c:[t.BE]},{b:"'\\\\?.",e:"'",i:"."}]},s={cN:"number",v:[{b:"\\b(0b[01']+)"},{b:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{b:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],r:0},i={cN:"meta",b:/#\s*[a-z]+\b/,e:/$/,k:{"meta-keyword":"if else elif endif define undef warning error line pragma ifdef ifndef include"},c:[{b:/\\\n/,r:0},t.inherit(r,{cN:"meta-string"}),{cN:"meta-string",b:/<[^\n>]*>/,e:/$/,i:"\\n"},t.CLCM,t.CBCM]},a=t.IR+"\\s*\\(",c={keyword:"int float while private char catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and or not",built_in:"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr",literal:"true false nullptr NULL"},n=[e,t.CLCM,t.CBCM,s,r];return{aliases:["c","cc","h","c++","h++","hpp"],k:c,i:"",k:c,c:["self",e]},{b:t.IR+"::",k:c},{v:[{b:/=/,e:/;/},{b:/\(/,e:/\)/},{bK:"new throw return else",e:/;/}],k:c,c:n.concat([{b:/\(/,e:/\)/,k:c,c:n.concat(["self"]),r:0}]),r:0},{cN:"function",b:"("+t.IR+"[\\*&\\s]+)+"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\w\s\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,s,e]},t.CLCM,t.CBCM,i]},{cN:"class",bK:"class struct",e:/[{;:]/,c:[{b://,c:["self"]},t.TM]}]),exports:{preprocessor:i,strings:r,k:c}}});hljs.registerLanguage("x86asm",function(s){return{cI:!0,l:"[.%]?"+s.IR,k:{keyword:"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63",built_in:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr",meta:"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %if %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__"},c:[s.C(";","$",{r:0}),{cN:"number",v:[{b:"\\b(?:([0-9][0-9_]*)?\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\b",r:0},{b:"\\$[0-9][0-9A-Fa-f]*",r:0},{b:"\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\b"},{b:"\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\b"}]},s.QSM,{cN:"string",v:[{b:"'",e:"[^\\\\]'"},{b:"`",e:"[^\\\\]`"}],r:0},{cN:"symbol",v:[{b:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)"},{b:"^\\s*%%[A-Za-z0-9_$#@~.?]*:"}],r:0},{cN:"subst",b:"%[0-9]+",r:0},{cN:"subst",b:"%!S+",r:0},{cN:"meta",b:/^\s*\.[\w_-]+/}]}});hljs.registerLanguage("bash",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},s={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["sh","zsh"],l:/\b-?[a-z\._]+\b/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"meta",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,s,a,t]}});hljs.registerLanguage("shell",function(s){return{aliases:["console"],c:[{cN:"meta",b:"^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]",starts:{e:"$",sL:"bash"}}]}});hljs.registerLanguage("http",function(e){var t="HTTP/[0-9\\.]+";return{aliases:["https"],i:"\\S",c:[{b:"^"+t,e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{b:"^[A-Z]+ (.*?) "+t+"$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0},{b:t},{cN:"keyword",b:"[A-Z]+"}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{e:"$",r:0}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage("cs",function(e){var i={keyword:"abstract as base bool break byte case catch char checked const continue decimal default delegate do double enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long nameof object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while add alias ascending async await by descending dynamic equals from get global group into join let on orderby partial remove select set value var where yield",literal:"null false true"},t={cN:"string",b:'@"',e:'"',c:[{b:'""'}]},r=e.inherit(t,{i:/\n/}),a={cN:"subst",b:"{",e:"}",k:i},c=e.inherit(a,{i:/\n/}),n={cN:"string",b:/\$"/,e:'"',i:/\n/,c:[{b:"{{"},{b:"}}"},e.BE,c]},s={cN:"string",b:/\$@"/,e:'"',c:[{b:"{{"},{b:"}}"},{b:'""'},a]},o=e.inherit(s,{i:/\n/,c:[{b:"{{"},{b:"}}"},{b:'""'},c]});a.c=[s,n,t,e.ASM,e.QSM,e.CNM,e.CBCM],c.c=[o,n,r,e.ASM,e.QSM,e.CNM,e.inherit(e.CBCM,{i:/\n/})];var l={v:[s,n,t,e.ASM,e.QSM]},b=e.IR+"(<"+e.IR+"(\\s*,\\s*"+e.IR+")*>)?(\\[\\])?";return{aliases:["csharp"],k:i,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"doctag",v:[{b:"///",r:0},{b:""},{b:""}]}]}),e.CLCM,e.CBCM,{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},l,e.CNM,{bK:"class interface",e:/[{;=]/,i:/[^\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"namespace",e:/[{;=]/,i:/[^\s:]/,c:[e.inherit(e.TM,{b:"[a-zA-Z](\\.?\\w)*"}),e.CLCM,e.CBCM]},{cN:"meta",b:"^\\s*\\[",eB:!0,e:"\\]",eE:!0,c:[{cN:"meta-string",b:/"/,e:/"/}]},{bK:"new return throw await else",r:0},{cN:"function",b:"("+b+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:i,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:i,r:0,c:[l,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage("coffeescript",function(e){var c={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super yield import export from as default await then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",built_in:"npm require console print module global window document"},n="[A-Za-z$_][0-9A-Za-z$_]*",r={cN:"subst",b:/#\{/,e:/}/,k:c},i=[e.BNM,e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,r]},{b:/"/,e:/"/,c:[e.BE,r]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[r,e.HCM]},{b:"//[gim]*",r:0},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{b:"@"+n},{sL:"javascript",eB:!0,eE:!0,v:[{b:"```",e:"```"},{b:"`",e:"`"}]}];r.c=i;var s=e.inherit(e.TM,{b:n}),t="(\\(.*\\))?\\s*\\B[-=]>",o={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:c,c:["self"].concat(i)}]};return{aliases:["coffee","cson","iced"],k:c,i:/\/\*/,c:i.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+n+"\\s*=\\s*"+t,e:"[-=]>",rB:!0,c:[s,o]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:t,e:"[-=]>",rB:!0,c:[o]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[s]},s]},{b:n+":",e:":",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*#]/,c:[{bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment",e:/;/,eW:!0,l:/[\w\.]+/,k:{keyword:"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null",built_in:"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage("apache",function(e){var r={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"section",b:""},{cN:"attribute",b:/\w+/,r:0,k:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"meta",b:"\\s\\[",e:"\\]$"},{cN:"variable",b:"[\\$%]\\{",e:"\\}",c:["self",r]},r,e.QSM]}}],i:/\S/}});hljs.registerLanguage("haskell",function(e){var i={v:[e.C("--","$"),e.C("{-","-}",{c:["self"]})]},a={cN:"meta",b:"{-#",e:"#-}"},l={cN:"meta",b:"^#",e:"$"},c={cN:"type",b:"\\b[A-Z][\\w']*",r:0},n={b:"\\(",e:"\\)",i:'"',c:[a,l,{cN:"type",b:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},e.inherit(e.TM,{b:"[_a-z][\\w']*"}),i]},s={b:"{",e:"}",c:n.c};return{aliases:["hs"],k:"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec",c:[{bK:"module",e:"where",k:"module where",c:[n,i],i:"\\W\\.|;"},{b:"\\bimport\\b",e:"$",k:"import qualified as hiding",c:[n,i],i:"\\W\\.|;"},{cN:"class",b:"^(\\s*)?(class|instance)\\b",e:"where",k:"class family instance where",c:[c,n,i]},{cN:"class",b:"\\b(data|(new)?type)\\b",e:"$",k:"data family type newtype deriving",c:[a,c,n,s,i]},{bK:"default",e:"$",c:[c,n,i]},{bK:"infix infixl infixr",e:"$",c:[e.CNM,i]},{b:"\\bforeign\\b",e:"$",k:"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe",c:[c,e.QSM,i]},{cN:"meta",b:"#!\\/usr\\/bin\\/env runhaskell",e:"$"},a,l,e.QSM,e.CNM,c,e.inherit(e.TM,{b:"^[_a-z][\\w']*"}),i,{b:"->|<-"}]}});hljs.registerLanguage("scala",function(e){var t={cN:"meta",b:"@[A-Za-z]+"},a={cN:"subst",v:[{b:"\\$[A-Za-z0-9_]+"},{b:"\\${",e:"}"}]},r={cN:"string",v:[{b:'"',e:'"',i:"\\n",c:[e.BE]},{b:'"""',e:'"""',r:10},{b:'[a-z]+"',e:'"',i:"\\n",c:[e.BE,a]},{cN:"string",b:'[a-z]+"""',e:'"""',c:[a],r:10}]},c={cN:"symbol",b:"'\\w[\\w\\d_]*(?!')"},i={cN:"type",b:"\\b[A-Z][A-Za-z0-9_]*",r:0},s={cN:"title",b:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,r:0},n={cN:"class",bK:"class object trait type",e:/[:={\[\n;]/,eE:!0,c:[{bK:"extends with",r:10},{b:/\[/,e:/\]/,eB:!0,eE:!0,r:0,c:[i]},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,r:0,c:[i]},s]},l={cN:"function",bK:"def",e:/[:={\[(\n;]/,eE:!0,c:[s]};return{k:{literal:"true false null",keyword:"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit"},c:[e.CLCM,e.CBCM,r,c,i,l,n,e.CNM,t]}}); \ No newline at end of file diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 66b8bc8..0000000 --- a/docs/index.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - Introduction - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Introduction

-

This is the book for learning how to write GameBoy Advance (GBA) games in Rust.

-

I'm Lokathor, the main author of the book. There's also Ketsuban who -provides the technical advisement, reviews the PRs, and keeps my crazy in check.

-

The book is a work in progress, as you can see if you actually try to open many -of the pages listed in the Table Of Contents.

-

Feedback

-

It's very often hard to tell when you've explained something properly. In the -same way that your brain will read over small misspellings and correct things -into the right word, if an explanation for something you already understand -accidentally skips over some small detail then your brain can fill in the gaps -without you realizing it.

-

Please, if things don't make sense then file an -issue about it so I know where -things need to improve.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/mark.min.js b/docs/mark.min.js deleted file mode 100644 index 1636231..0000000 --- a/docs/mark.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*!*************************************************** -* mark.js v8.11.1 -* https://markjs.io/ -* Copyright (c) 2014–2018, Julian Kühnel -* Released under the MIT license https://git.io/vwTVl -*****************************************************/ -!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Mark=t()}(this,function(){"use strict";var e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},n=function(){function e(e,t){for(var n=0;n1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:5e3;t(this,e),this.ctx=n,this.iframes=r,this.exclude=i,this.iframesTimeout=o}return n(e,[{key:"getContexts",value:function(){var e=[];return(void 0!==this.ctx&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:"string"==typeof this.ctx?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach(function(t){var n=e.filter(function(e){return e.contains(t)}).length>0;-1!==e.indexOf(t)||n||e.push(t)}),e}},{key:"getIframeContents",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},r=void 0;try{var i=e.contentWindow;if(r=i.document,!i||!r)throw new Error("iframe inaccessible")}catch(e){n()}r&&t(r)}},{key:"isIframeBlank",value:function(e){var t="about:blank",n=e.getAttribute("src").trim();return e.contentWindow.location.href===t&&n!==t&&n}},{key:"observeIframeLoad",value:function(e,t,n){var r=this,i=!1,o=null,a=function a(){if(!i){i=!0,clearTimeout(o);try{r.isIframeBlank(e)||(e.removeEventListener("load",a),r.getIframeContents(e,t,n))}catch(e){n()}}};e.addEventListener("load",a),o=setTimeout(a,this.iframesTimeout)}},{key:"onIframeReady",value:function(e,t,n){try{"complete"===e.contentWindow.document.readyState?this.isIframeBlank(e)?this.observeIframeLoad(e,t,n):this.getIframeContents(e,t,n):this.observeIframeLoad(e,t,n)}catch(e){n()}}},{key:"waitForIframes",value:function(e,t){var n=this,r=0;this.forEachIframe(e,function(){return!0},function(e){r++,n.waitForIframes(e.querySelector("html"),function(){--r||t()})},function(e){e||t()})}},{key:"forEachIframe",value:function(t,n,r){var i=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},a=t.querySelectorAll("iframe"),s=a.length,c=0;a=Array.prototype.slice.call(a);var u=function(){--s<=0&&o(c)};s||u(),a.forEach(function(t){e.matches(t,i.exclude)?u():i.onIframeReady(t,function(e){n(t)&&(c++,r(e)),u()},u)})}},{key:"createIterator",value:function(e,t,n){return document.createNodeIterator(e,t,n,!1)}},{key:"createInstanceOnIframe",value:function(t){return new e(t.querySelector("html"),this.iframes)}},{key:"compareNodeIframe",value:function(e,t,n){if(e.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_PRECEDING){if(null===t)return!0;if(t.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_FOLLOWING)return!0}return!1}},{key:"getIteratorNode",value:function(e){var t=e.previousNode();return{prevNode:t,node:null===t?e.nextNode():e.nextNode()&&e.nextNode()}}},{key:"checkIframeFilter",value:function(e,t,n,r){var i=!1,o=!1;return r.forEach(function(e,t){e.val===n&&(i=t,o=e.handled)}),this.compareNodeIframe(e,t,n)?(!1!==i||o?!1===i||o||(r[i].handled=!0):r.push({val:n,handled:!0}),!0):(!1===i&&r.push({val:n,handled:!1}),!1)}},{key:"handleOpenIframes",value:function(e,t,n,r){var i=this;e.forEach(function(e){e.handled||i.getIframeContents(e.val,function(e){i.createInstanceOnIframe(e).forEachNode(t,n,r)})})}},{key:"iterateThroughNodes",value:function(e,t,n,r,i){for(var o,a=this,s=this.createIterator(t,e,r),c=[],u=[],l=void 0,h=void 0;void 0,o=a.getIteratorNode(s),h=o.prevNode,l=o.node;)this.iframes&&this.forEachIframe(t,function(e){return a.checkIframeFilter(l,h,e,c)},function(t){a.createInstanceOnIframe(t).forEachNode(e,function(e){return u.push(e)},r)}),u.push(l);u.forEach(function(e){n(e)}),this.iframes&&this.handleOpenIframes(c,e,n,r),i()}},{key:"forEachNode",value:function(e,t,n){var r=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},o=this.getContexts(),a=o.length;a||i(),o.forEach(function(o){var s=function(){r.iterateThroughNodes(e,o,t,n,function(){--a<=0&&i()})};r.iframes?r.waitForIframes(o,s):s()})}}],[{key:"matches",value:function(e,t){var n="string"==typeof t?[t]:t,r=e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;if(r){var i=!1;return n.every(function(t){return!r.call(e,t)||(i=!0,!1)}),i}return!1}}]),e}(),o=function(){function e(n){t(this,e),this.opt=r({},{diacritics:!0,synonyms:{},accuracy:"partially",caseSensitive:!1,ignoreJoiners:!1,ignorePunctuation:[],wildcards:"disabled"},n)}return n(e,[{key:"create",value:function(e){return"disabled"!==this.opt.wildcards&&(e=this.setupWildcardsRegExp(e)),e=this.escapeStr(e),Object.keys(this.opt.synonyms).length&&(e=this.createSynonymsRegExp(e)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),this.opt.diacritics&&(e=this.createDiacriticsRegExp(e)),e=this.createMergedBlanksRegExp(e),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.createJoinersRegExp(e)),"disabled"!==this.opt.wildcards&&(e=this.createWildcardsRegExp(e)),e=this.createAccuracyRegExp(e),new RegExp(e,"gm"+(this.opt.caseSensitive?"":"i"))}},{key:"escapeStr",value:function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}},{key:"createSynonymsRegExp",value:function(e){var t=this.opt.synonyms,n=this.opt.caseSensitive?"":"i",r=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(var i in t)if(t.hasOwnProperty(i)){var o=t[i],a="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(i):this.escapeStr(i),s="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(o):this.escapeStr(o);""!==a&&""!==s&&(e=e.replace(new RegExp("("+this.escapeStr(a)+"|"+this.escapeStr(s)+")","gm"+n),r+"("+this.processSynonyms(a)+"|"+this.processSynonyms(s)+")"+r))}return e}},{key:"processSynonyms",value:function(e){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),e}},{key:"setupWildcardsRegExp",value:function(e){return(e=e.replace(/(?:\\)*\?/g,function(e){return"\\"===e.charAt(0)?"?":""})).replace(/(?:\\)*\*/g,function(e){return"\\"===e.charAt(0)?"*":""})}},{key:"createWildcardsRegExp",value:function(e){var t="withSpaces"===this.opt.wildcards;return e.replace(/\u0001/g,t?"[\\S\\s]?":"\\S?").replace(/\u0002/g,t?"[\\S\\s]*?":"\\S*")}},{key:"setupIgnoreJoinersRegExp",value:function(e){return e.replace(/[^(|)\\]/g,function(e,t,n){var r=n.charAt(t+1);return/[(|)\\]/.test(r)||""===r?e:e+"\0"})}},{key:"createJoinersRegExp",value:function(e){var t=[],n=this.opt.ignorePunctuation;return Array.isArray(n)&&n.length&&t.push(this.escapeStr(n.join(""))),this.opt.ignoreJoiners&&t.push("\\u00ad\\u200b\\u200c\\u200d"),t.length?e.split(/\u0000+/).join("["+t.join("")+"]*"):e}},{key:"createDiacriticsRegExp",value:function(e){var t=this.opt.caseSensitive?"":"i",n=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"],r=[];return e.split("").forEach(function(i){n.every(function(n){if(-1!==n.indexOf(i)){if(r.indexOf(n)>-1)return!1;e=e.replace(new RegExp("["+n+"]","gm"+t),"["+n+"]"),r.push(n)}return!0})}),e}},{key:"createMergedBlanksRegExp",value:function(e){return e.replace(/[\s]+/gim,"[\\s]+")}},{key:"createAccuracyRegExp",value:function(e){var t=this,n=this.opt.accuracy,r="string"==typeof n?n:n.value,i="";switch(("string"==typeof n?[]:n.limiters).forEach(function(e){i+="|"+t.escapeStr(e)}),r){case"partially":default:return"()("+e+")";case"complementary":return"()([^"+(i="\\s"+(i||this.escapeStr("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿")))+"]*"+e+"[^"+i+"]*)";case"exactly":return"(^|\\s"+i+")("+e+")(?=$|\\s"+i+")"}}}]),e}(),a=function(){function a(e){t(this,a),this.ctx=e,this.ie=!1;var n=window.navigator.userAgent;(n.indexOf("MSIE")>-1||n.indexOf("Trident")>-1)&&(this.ie=!0)}return n(a,[{key:"log",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"debug",r=this.opt.log;this.opt.debug&&"object"===(void 0===r?"undefined":e(r))&&"function"==typeof r[n]&&r[n]("mark.js: "+t)}},{key:"getSeparatedKeywords",value:function(e){var t=this,n=[];return e.forEach(function(e){t.opt.separateWordSearch?e.split(" ").forEach(function(e){e.trim()&&-1===n.indexOf(e)&&n.push(e)}):e.trim()&&-1===n.indexOf(e)&&n.push(e)}),{keywords:n.sort(function(e,t){return t.length-e.length}),length:n.length}}},{key:"isNumeric",value:function(e){return Number(parseFloat(e))==e}},{key:"checkRanges",value:function(e){var t=this;if(!Array.isArray(e)||"[object Object]"!==Object.prototype.toString.call(e[0]))return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(e),[];var n=[],r=0;return e.sort(function(e,t){return e.start-t.start}).forEach(function(e){var i=t.callNoMatchOnInvalidRanges(e,r),o=i.start,a=i.end;i.valid&&(e.start=o,e.length=a-o,n.push(e),r=a)}),n}},{key:"callNoMatchOnInvalidRanges",value:function(e,t){var n=void 0,r=void 0,i=!1;return e&&void 0!==e.start?(r=(n=parseInt(e.start,10))+parseInt(e.length,10),this.isNumeric(e.start)&&this.isNumeric(e.length)&&r-t>0&&r-n>0?i=!0:(this.log("Ignoring invalid or overlapping range: "+JSON.stringify(e)),this.opt.noMatch(e))):(this.log("Ignoring invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:n,end:r,valid:i}}},{key:"checkWhitespaceRanges",value:function(e,t,n){var r=void 0,i=!0,o=n.length,a=t-o,s=parseInt(e.start,10)-a;return(r=(s=s>o?o:s)+parseInt(e.length,10))>o&&(r=o,this.log("End range automatically set to the max value of "+o)),s<0||r-s<0||s>o||r>o?(i=!1,this.log("Invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)):""===n.substring(s,r).replace(/\s+/g,"")&&(i=!1,this.log("Skipping whitespace only range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:s,end:r,valid:i}}},{key:"getTextNodes",value:function(e){var t=this,n="",r=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,function(e){r.push({start:n.length,end:(n+=e.textContent).length,node:e})},function(e){return t.matchesExclude(e.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},function(){e({value:n,nodes:r})})}},{key:"matchesExclude",value:function(e){return i.matches(e,this.opt.exclude.concat(["script","style","title","head","html"]))}},{key:"wrapRangeInTextNode",value:function(e,t,n){var r=this.opt.element?this.opt.element:"mark",i=e.splitText(t),o=i.splitText(n-t),a=document.createElement(r);return a.setAttribute("data-markjs","true"),this.opt.className&&a.setAttribute("class",this.opt.className),a.textContent=i.textContent,i.parentNode.replaceChild(a,i),o}},{key:"wrapRangeInMappedTextNode",value:function(e,t,n,r,i){var o=this;e.nodes.every(function(a,s){var c=e.nodes[s+1];if(void 0===c||c.start>t){if(!r(a.node))return!1;var u=t-a.start,l=(n>a.end?a.end:n)-a.start,h=e.value.substr(0,a.start),f=e.value.substr(l+a.start);if(a.node=o.wrapRangeInTextNode(a.node,u,l),e.value=h+f,e.nodes.forEach(function(t,n){n>=s&&(e.nodes[n].start>0&&n!==s&&(e.nodes[n].start-=l),e.nodes[n].end-=l)}),n-=l,i(a.node.previousSibling,a.start),!(n>a.end))return!1;t=a.end}return!0})}},{key:"wrapGroups",value:function(e,t,n,r){return r((e=this.wrapRangeInTextNode(e,t,t+n)).previousSibling),e}},{key:"separateGroups",value:function(e,t,n,r,i){for(var o=t.length,a=1;a-1&&r(t[a],e)&&(e=this.wrapGroups(e,s,t[a].length,i))}return e}},{key:"wrapMatches",value:function(e,t,n,r,i){var o=this,a=0===t?0:t+1;this.getTextNodes(function(t){t.nodes.forEach(function(t){t=t.node;for(var i=void 0;null!==(i=e.exec(t.textContent))&&""!==i[a];){if(o.opt.separateGroups)t=o.separateGroups(t,i,a,n,r);else{if(!n(i[a],t))continue;var s=i.index;if(0!==a)for(var c=1;c - - - - - Rust GBA Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
-
-

Introduction

-

This is the book for learning how to write GameBoy Advance (GBA) games in Rust.

-

I'm Lokathor, the main author of the book. There's also Ketsuban who -provides the technical advisement, reviews the PRs, and keeps my crazy in check.

-

The book is a work in progress, as you can see if you actually try to open many -of the pages listed in the Table Of Contents.

-

Feedback

-

It's very often hard to tell when you've explained something properly. In the -same way that your brain will read over small misspellings and correct things -into the right word, if an explanation for something you already understand -accidentally skips over some small detail then your brain can fill in the gaps -without you realizing it.

-

Please, if things don't make sense then file an -issue about it so I know where -things need to improve.

-

Reader Requirements

-

This book naturally assumes that you've already read Rust's core book:

- -

Now, I know it sounds silly to say "if you wanna program Rust on this old -video game system you should already know how to program Rust", but the more -people I meet and chat with the more they tell me that they jumped into Rust -without reading any or all of the book. You know who you are.

-

Please, read the whole book!

-

In addition to the core book, there's also an expansion book that I will declare -to be required reading for this:

- -

The Rustonomicon is all about trying to demystify unsafe. We'll end up using a -fair bit of unsafe code as a natural consequence of doing direct hardware -manipulations. Using unsafe is like swinging a -sword, -you should start slowly, practice carefully, and always pay attention no matter -how experienced you think you've become.

-

That said, it's sometimes a necessary -tool to get the job done, so you -have to break out of the borderline pathological fear of using it that most rust -programmers tend to have.

-

Book Goals and Style

-

So, what's this book actually gonna teach you?

-

My goal is certainly not just showing off the crate. Programming for the GBA is -weird enough that I'm trying to teach you all the rest of the stuff you need to -know along the way. If I do my job right then you'd be able to write your own -crate for GBA stuff just how you think it should all go by the end.

-

Overall the book is sorted more for easy review once you're trying to program -something. The GBA has a few things that can stand on their own and many other -things are a mass of interconnected concepts, so some parts of the book end up -having to refer you to portions that you haven't read yet. The chapters and -sections are sorted so that minimal future references are required, but it's -unavoidable that it'll happen sometimes.

-

The actual "tutorial order" of the book is the -Examples chapter. Each section of that chapter -breaks down one of the provided examples in the examples -directory of the -repository. We go over what sections of the book you'll need to have read for -the example code to make sense, and also how we apply the general concepts -described in the book to the specific example cases.

-

Development Setup

-

Before you can build a GBA game you'll have to follow some special steps to -setup the development environment.

-

Once again, extra special thanks to Ketsuban, who first dove into how to -make this all work with rust and then shared it with the world.

-

Per System Setup

-

Obviously you need your computer to have a working rust -installation. However, you'll also need to ensure that -you're using a nightly toolchain (we will need it for inline assembly, among -other potential useful features). You can run rustup default nightly to set -nightly as the system wide default toolchain, or you can use a toolchain -file to use -nightly just on a specific project, but either way we'll be assuming the use of -nightly from now on. You'll also need the rust-src component so that -cargo-xbuild will be able to compile the core crate for us in a bit, so run -rustup component add rust-src.

-

Next, you need devkitpro. They've -got a graphical installer for Windows that runs nicely, and I guess pacman -support on Linux (I'm on Windows so I haven't tried the Linux install myself). -We'll be using a few of their general binutils for the arm-none-eabi target, -and we'll also be using some of their tools that are specific to GBA -development, so even if you already have the right binutils for whatever -reason, you'll still want devkitpro for the gbafix utility.

-
    -
  • On Windows you'll want something like C:\devkitpro\devkitARM\bin and -C:\devkitpro\tools\bin to be added to your -PATH, depending on where you -installed it to and such.
  • -
  • On Linux you can use pacman to get it, and the default install puts the stuff -in /opt/devkitpro/devkitARM/bin and /opt/devkitpro/tools/bin. If you need -help you can look in our repository's -.travis.yml -file to see exactly what our CI does.
  • -
-

Finally, you'll need cargo-xbuild. Just run cargo install cargo-xbuild and -cargo will figure it all out for you.

-

Per Project Setup

-

Once the system wide tools are ready, you'll need some particular files each -time you want to start a new project. You can find them in the root of the -rust-console/gba repo.

-
    -
  • thumbv4-none-agb.json describes the overall GBA to cargo-xbuild (and LLVM) -so it knows what to do. Technically the GBA is thumbv4-none-eabi, but we -change the eabi to agb so that we can distinguish it from other eabi -devices when using cfg flags.
  • -
  • crt0.s describes some ASM startup stuff. If you have more ASM to place here -later on this is where you can put it. You also need to build it into a -crt0.o file before it can actually be used, but we'll cover that below.
  • -
  • linker.ld tells the linker all the critical info about the layout -expectations that the GBA has about our program, and that it should also -include the crt0.o file with our compiled rust code.
  • -
-

Compiling

-

Once all the tools are in place, there's particular steps that you need to -compile the project. For these to work you'll need some source code to compile. -Unlike with other things, an empty main file and/or an empty lib file will cause -a total build failure, because we'll need a -no_std build, and rust -defaults to builds that use the standard library. The next section has a minimal -example file you can use (along with explanation), but we'll describe the build -steps here.

-
    -
  • -

    arm-none-eabi-as crt0.s -o target/crt0.o

    -
      -
    • This builds your text format crt0.s file into object format crt0.o -that's placed in the target/ directory. Note that if the target/ -directory doesn't exist yet it will fail, so you have to make the directory -if it's not there. You don't need to rebuild crt0.s every single time, -only when it changes, but you might as well throw a line to do it every time -into your build script so that you never forget because it's a practically -instant operation anyway.
    • -
    -
  • -
  • -

    cargo xbuild --target thumbv4-none-agb.json

    -
      -
    • This builds your Rust source. It accepts most of the normal options, such -as --release, and options, such as --bin foo or --examples, that you'd -expect cargo to accept.
    • -
    • You can not build and run tests this way, because they require std, -which the GBA doesn't have. If you want you can still run some of your -project's tests with cargo test --lib or similar, but that builds for your -local machine, so anything specific to the GBA (such as reading and writing -registers) won't be testable that way. If you want to isolate and try out -some piece code running on the GBA you'll unfortunately have to make a demo -for it in your examples/ directory and then run the demo in an emulator -and see if it does what you expect.
    • -
    • The file extension is important! It will work if you forget it, but cargo xbuild takes the inclusion of the extension as a flag to also compile -dependencies with the same sysroot, so you can include other crates in your -build. Well, crates that work in the GBA's limited environment, but you get -the idea.
    • -
    -
  • -
-

At this point you have an ELF binary that some emulators can execute directly -(more on that later). However, if you want a "real" ROM that works in all -emulators and that you could transfer to a flash cart to play on real hardware -there's a little more to do.

-
    -
  • -

    arm-none-eabi-objcopy -O binary target/thumbv4-none-agb/MODE/BIN_NAME target/ROM_NAME.gba

    -
      -
    • This will perform an objcopy on our -program. Here I've named the program arm-none-eabi-objcopy, which is what -devkitpro calls their version of objcopy that's specific to the GBA in the -Windows install. If the program isn't found under that name, have a look in -your installation directory to see if it's under a slightly different name -or something.
    • -
    • As you can see from reading the man page, the -O binary option takes our -lovely ELF file with symbols and all that and strips it down to basically a -bare memory dump of the program.
    • -
    • The next argument is the input file. You might not be familiar with how -cargo arranges stuff in the target/ directory, and between RLS and -cargo doc and stuff it gets kinda crowded, so it goes like this: -
        -
      • Since our program was built for a non-local target, first we've got a -directory named for that target, thumbv4-none-agb/
      • -
      • Next, the "MODE" is either debug/ or release/, depending on if we had -the --release flag included. You'll probably only be packing release -mode programs all the way into GBA roms, but it works with either mode.
      • -
      • Finally, the name of the program. If your program is something out of the -project's src/bin/ then it'll be that file's name, or whatever name you -configured for the bin in the Cargo.toml file. If your program is -something out of the project's examples/ directory there will be a -similar examples/ sub-directory first, and then the example's name.
      • -
      -
    • -
    • The final argument is the output of the objcopy, which I suggest putting -at just the top level of the target/ directory. Really it could go -anywhere, but if you're using git then it's likely that your .gitignore -file is already setup to exclude everything in target/, so this makes sure -that your intermediate game builds don't get checked into your git.
    • -
    -
  • -
  • -

    gbafix target/ROM_NAME.gba

    -
      -
    • The gbafix tool also comes from devkitpro. The GBA is very picky about a -ROM's format, and gbafix patches the ROM's header and such so that it'll -work right. Unlike objcopy, this tool is custom built for GBA development, -so it works just perfectly without any arguments beyond the file name. The -ROM is patched in place, so we don't even need to specify a new destination.
    • -
    -
  • -
-

And you're finally done!

-

Of course, you probably want to make a script for all that, but it's up to you. -On our own project we have it mostly set up within a Makefile.toml which runs -using the cargo-make plugin.

-

Hello, Magic

-

So we know all the steps to build our source, we just need some source.

-

We're beginners, so we'll start small. With normal programming there's usually a -console available, so the minimal program prints "Hello, world" to the terminal. -On a GBA we don't have a terminal and standard out and all that, so the minimal -program draws a red, blue, and green dot to the screen.

-

At the lowest level of device programming, it's all Magic -Numbers. You write -special values to special places and then the hardware does something. A clear -API makes every magic number and magic location easy to understand. A clear and -good API also prevents you from using the wrong magic number in the wrong place -and causing problems for yourself.

-

This is the minimal example to just test that our build system is all set, so -just this once we'll go full magic number crazy town, for fun. Ready? Here -goes:

-

hello_magic.rs:

-
#![no_std]
-#![feature(start)]
-
-#[panic_handler]
-fn panic(_info: &core::panic::PanicInfo) -> ! {
-  loop {}
-}
-
-#[start]
-fn main(_argc: isize, _argv: *const *const u8) -> isize {
-  unsafe {
-    (0x400_0000 as *mut u16).write_volatile(0x0403);
-    (0x600_0000 as *mut u16).offset(120 + 80 * 240).write_volatile(0x001F);
-    (0x600_0000 as *mut u16).offset(136 + 80 * 240).write_volatile(0x03E0);
-    (0x600_0000 as *mut u16).offset(120 + 96 * 240).write_volatile(0x7C00);
-    loop {}
-  }
-}
-
-

Throw that into your project skeleton, build the program, and give it a run. You -should see a red, green, and blue dot close-ish to the middle of the screen. If -you don't, something already went wrong. Double check things, phone a friend, -write your senators, try asking Lokathor or Ketsuban on the Rust Community -Discord, until you're eventually able to -get your three dots going.

-

Of course, I'm sure you want to know why those numbers are the numbers to use. -Well that's what the whole rest of the book is about!

-

Help and Resources

-

Help

-

So you're stuck on a problem and the book doesn't say what to do. Where can you -find out more?

-

The first place I would suggest is the Rust Community -Discord. If it's a general Rust question -then you can ask anyone in any channel you feel is appropriate. If it's GBA -specific then you can try asking me (Lokathor) or Ketsuban in the #gamedev -channel.

-

Emulators

-

You certainly might want to eventually write a game that you can put on a flash -cart and play on real hardware, but for most of your development you'll probably -want to be using an emulator for testing, because you don't have to fiddle with -cables and all that.

-

In terms of emulators, you want to be using -mGBA, and you want to be using the 0.7 Beta -1 or later. This update -lets you run raw ELF files, which means that you can have full debug symbols -available while you're debugging problems.

-

Information Resources

-

First, if I fail to describe something related to Rust, you can always try -checking in The Rust -Reference to see -if they cover it. You can mostly ignore that big scary red banner at the top, -things are a lot better documented than they make it sound.

-

If you need help trying to fiddle your math down as hard as you can, there are -resources such as the Bit Twiddling -Hacks page.

-

As to GBA related lore, Ketsuban and I didn't magically learn this all from -nowhere, we read various technical manuals and guides ourselves and then -distilled those works oriented around C and C++ into a book for Rust.

-

We have personally used some or all of the following:

-
    -
  • GBATEK: This is the resource. It -covers not only the GBA, but also the DS and DSi, and also a run down of ARM -assembly (32-bit and 16-bit opcodes). The link there is to the 2.9b version on -problemkaputt.de (the official home of the document), but if you just google -for gbatek the top result is for the 2.5 version on akkit.org, so make sure -you're looking at the newest version. Sometimes problemkaputt.de is a little -sluggish so I've also mirrored the 2.9b -version on my own site as well. GBATEK is rather large, over 2mb of text, so -if you're on a phone or similar you might want to save an offline copy to go -easy on your data usage.
  • -
  • TONC: While GBATEK is basically just a -huge tech specification, TONC is an actual guide on how to make sense of the -GBA's abilities and organize it into a game. It's written for C of course, but -as a Rust programmer you should always be practicing your ability to read C -code anyway. It's the programming equivalent of learning Latin because all the -old academic books are written in Latin.
  • -
  • CowBite: This is -more like GBATEK, and it's less complete, but it mixes in a little more -friendly explanation of things in between the hardware spec parts.
  • -
-

And I haven't had time to look at it myself, The Audio -Advance seems to be very good. It explains in depth -how you can get audio working on the GBA. Note that the table of contents for -each page goes along the top instead of down the side.

-

Non-Rust GBA Community

-

There's also the GBADev.org site, which has a forum -and everything. They're coding in C and C++, but you can probably overcome that -difference with a little work on your part.

-

I also found a place called -GBATemp, which -seems to have a more active forum but less of a focus on actual coding.

-

Quirks

-

The GBA supports a lot of totally normal Rust code exactly like you'd think.

-

However, it also is missing a lot of what you might expect, and sometimes we -have to do things in slightly weird ways.

-

We start the book by covering the quirks our code will have, just to avoid too -many surprises later.

-

No Std

-

First up, as you already saw in the hello_magic code, we have to use the -#![no_std] outer attribute on our program when we target the GBA. You can find -some info about no_std in two official sources:

- -

The unstable book is borderline useless here because it's describing too many -things in too many words. The embedded book is much better, but still fairly -terse.

-

Bare Metal

-

The GBA falls under what the Embedded Book calls "Bare Metal Environments". -Basically, the machine powers on and immediately begins executing some ASM code. -Our ASM startup was provided by Ketsuban (check the crt0.s file). We'll go -over how it works much later on, for now it's enough to know that it does -work, and eventually control passes into Rust code.

-

On the rust code side of things, we determine our starting point with the -#[start] attribute on our main function. The main function also has a -specific type signature that's different from the usual main that you'd see in -Rust. I'd tell you to read the unstable-book entry on #[start] but they -literally -just tell you to look at the tracking issue for -it instead, and that's not very -helpful either. Basically it just has to be declared the way it is, even -though there's nothing passing in the arguments and there's no place that the -return value will go. The compiler won't accept it any other way.

-

No Standard Library

-

The Embedded Book tells us that we can't use the standard library, but we get -access to something called "libcore", which sounds kinda funny. What they're -talking about is just the core -crate, which is called libcore -within the rust repository for historical reasons.

-

The core crate is actually still a really big portion of Rust. The standard -library doesn't actually hold too much code (relatively speaking), instead it -just takes code form other crates and then re-exports it in an organized way. So -with just core instead of std, what are we missing?

-

In no particular order:

-
    -
  • Allocation
  • -
  • Clock
  • -
  • Network
  • -
  • File System
  • -
-

The allocation system and all the types that you can use if you have a global -allocator are neatly packaged up in the -alloc crate. The rest isn't as -nicely organized.

-

It's possible to implement a fair portion of the entire standard library -within a GBA context and make the rest just panic if you try to use it. However, -do you really need all that? Eh... probably not?

-
    -
  • We don't need a file system, because all of our data is just sitting there in -the ROM for us to use. When programming we can organize our const data into -modules and such to keep it organized, but once the game is compiled it's just -one huge flat address space. TODO: Parasyte says that a FS can be handy even -if it's all just ReadOnly, so we'll eventually talk about how you might set up -such a thing I guess, since we'll already be talking about replacements for -three of the other four things we "lost". Maybe we'll make Parasyte write that -section.
  • -
  • Networking, well, the GBA has a Link Cable you can use to communicate with -another GBA, but it's not really like a unix socket with TCP, so the standard -Rust networking isn't a very good match.
  • -
  • Clock is actually two different things at once. One is the ability to store -the time long term, which is a bit of hardware that some gamepaks have in them -(eg: pokemon ruby/sapphire/emerald). The GBA itself can't keep time while -power is off. However, the second part is just tracking time moment to moment, -which the GBA can totally do. We'll see how to access the timers soon enough.
  • -
-

Which just leaves us with allocation. Do we need an allocator? Depends on your -game. For demos and small games you probably don't need one. For bigger games -you'll maybe want to get an allocator going eventually. It's in some sense a -crutch, but it's a very useful one.

-

So I promise that at some point we'll cover how to get an allocator going. -Either a Rust Global Allocator (if practical), which would allow for a lot of -the standard library types to be used "for free" once it was set up, or just a -custom allocator that's GBA specific if Rust's global allocator style isn't a -good fit for the GBA (I honestly haven't looked into it).

-

Bare Metal Panic

-

If our code panics, we usually want to see that panic message. Unfortunately, -without a way to access something like stdout or stderr we've gotta do -something a little weirder.

-

If our program is running within the mGBA emulator, version 0.7 or later, we -can access a special set of addresses that allow us to send out CString -values, which then appear within a message log that you can check.

-

We can capture this behavior by making an MGBADebug type, and then implement -core::fmt::Write for that type. Once done, the write! macro will let us -target the mGBA debug output channel.

-

When used, it looks like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[panic_handler]
-fn panic(info: &core::panic::PanicInfo) -> ! {
-  use core::fmt::Write;
-  use gba::mgba::{MGBADebug, MGBADebugLevel};
-
-  if let Some(mut mgba) = MGBADebug::new() {
-    let _ = write!(mgba, "{}", info);
-    mgba.send(MGBADebugLevel::Fatal);
-  }
-  loop {}
-}
-#}
-

If you want to follow the particulars you can check the MGBADebug source in -the gba crate. Basically, there's one address you can use to try and activate -the debug output, and if it works you write your message into the "array" at -another address, and then finally write a send value to a third address. You'll -need to have read the volatile section for the -details to make sense.

-

LLVM Intrinsics

-

The above code will make your program fail to build in debug mode, saying that -__clzsi2 can't be found. This is a special builtin function that LLVM attempts -to use when there's no hardware version of an operation it wants to do (in this -case, counting the leading zeros). It's not actually necessary in this case, -which is why you only need it in debug mode. The higher optimization level of -release mode makes LLVM pre-compute more and fold more constants or whatever and -then it stops trying to call __clzsi2.

-

Unfortunately, sometimes a build will fail with a missing intrinsic even in -release mode.

-

If LLVM wants core to have that intrinsic then you're in -trouble, you'll have to send a PR to the -compiler-builtins -repository and hope to get it into rust itself.

-

If LLVM wants your code to have the intrinsic then you're in less trouble. You -can look up the details and then implement it yourself. It can go anywhere in -your program, as long as it has the right ABI and name. In the case of -__clzsi2 it takes a usize and returns a usize, so you'd write something -like:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[no_mangle]
-pub extern "C" fn __clzsi2(mut x: usize) -> usize {
-  //
-}
-#}
-

And so on for whatever other missing intrinsic.

-

Fixed Only

-

In addition to not having much of the standard library available, we don't even -have a floating point unit available! We can't do floating point math in -hardware! We could still do floating point math as pure software computations -if we wanted, but that's a slow, slow thing to do.

-

Are there faster ways? It's the same answer as always: "Yes, but not without a -tradeoff."

-

The faster way is to represent fractional values using a system called a Fixed -Point Representation. -What do we trade away? Numeric range.

-
    -
  • Floating point math stores bits for base value and for exponent all according -to a single well defined standard -for how such a complicated thing works.
  • -
  • Fixed point math takes a normal integer (either signed or unsigned) and then -just "mentally associates" it (so to speak) with a fractional value for its -"units". If you have 3 and it's in units of 1/2, then you have 3/2, or 1.5 -using decimal notation. If your number is 256 and it's in units of 1/256th -then the value is 1.0 in decimal notation.
  • -
-

Floating point math requires dedicated hardware to perform quickly, but it can -"trade" precision when it needs to represent extremely large or small values.

-

Fixed point math is just integral math, which our GBA is reasonably good at, but -because your number is associated with a fixed fraction your results can get out -of range very easily.

-

Representing A Fixed Point Value

-

So we want to associate our numbers with a mental note of what units they're in:

-
    -
  • PhantomData -is a type that tells the compiler "please remember this extra type info" when -you add it as a field to a struct. It goes away at compile time, so it's -perfect for us to use as space for a note to ourselves without causing runtime -overhead.
  • -
  • The typenum crate is the best way to -represent a number within a type in Rust. Since our values on the GBA are -always specified as a number of fractional bits to count the number as, we can -put typenum types such as U8 or U14 into our PhantomData to keep track -of what's going on.
  • -
-

Now, those of you who know me, or perhaps just know my reputation, will of -course immediately question what happened to the real Lokathor. I do not care -for most crates, and I particularly don't care for using a crate in teaching -situations. However, typenum has a number of factors on its side that let me -suggest it in this situation:

-
    -
  • It's version 1.10 with a total of 21 versions and nearly 700k downloads, so we -can expect that the major troubles have been shaken out and that it will remain -fairly stable for quite some time to come.
  • -
  • It has no further dependencies that it's going to drag into the compilation.
  • -
  • It happens all at compile time, so it's not clogging up our actual game with -any nonsense.
  • -
  • The (interesting) subject of "how do you do math inside Rust's trait system?" is -totally separate from the concern that we're trying to focus on here.
  • -
-

Therefore, we will consider it acceptable to use this crate.

-

Now the typenum crate defines a whole lot, but we'll focus down to just a -single type at the moment: -UInt is a -type-level unsigned value. It's like u8 or u16, but while they're types that -then have values, each UInt construction statically equates to a specific -value. Like how the () type only has one value, which is also called (). In -this case, you wrap up UInt around smaller UInt values and a B1 or B0 -value to build up the binary number that you want at the type level.

-

In other words, instead of writing

-

-# #![allow(unused_variables)]
-#fn main() {
-let six = 0b110;
-#}
-

We write

-

-# #![allow(unused_variables)]
-#fn main() {
-type U6 = UInt<UInt<UInt<UTerm, B1>, B1>, B0>;
-#}
-

Wild, I know. If you look into the typenum crate you can do math and stuff -with these type level numbers, and we will a little bit below, but to start off -we just need to store one in some PhantomData.

-

A struct For Fixed Point

-

Our actual type for a fixed point value looks like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-use core::marker::PhantomData;
-use typenum::marker_traits::Unsigned;
-
-/// Fixed point `T` value with `F` fractional bits.
-#[derive(Debug, Copy, Clone, Default, PartialEq, Eq, PartialOrd, Ord)]
-#[repr(transparent)]
-pub struct Fx<T, F: Unsigned> {
-  bits: T,
-  _phantom: PhantomData<F>,
-}
-#}
-

This says that Fx<T,F> is a generic type that holds some base number type T -and a F type that's marking off how many fractional bits we're using. We only -want people giving unsigned type-level values for the PhantomData type, so we -use the trait bound F: Unsigned.

-

We use -repr(transparent) -here to ensure that Fx will always be treated just like the base type in the -final program (in terms of bit pattern and ABI).

-

If you go and check, this is basically how the existing general purpose crates -for fixed point math represent their numbers. They're a little fancier about it -because they have to cover every case, and we only have to cover our GBA case.

-

That's quite a bit to type though. We probably want to make a few type aliases -for things to be easier to look at. Unfortunately there's no standard -notation for how -you write a fixed point type. We also have to limit ourselves to what's valid -for use in a Rust type too. I like the fx thing, so we'll use that for signed -and then fxu if we need an unsigned value.

-

-# #![allow(unused_variables)]
-#fn main() {
-/// Alias for an `i16` fixed point value with 8 fractional bits.
-pub type fx8_8 = Fx<i16,U8>;
-#}
-

Rust will complain about having non_camel_case_types, and you can shut that -warning up by putting an #[allow(non_camel_case_types)] attribute on the type -alias directly, or you can use #![allow(non_camel_case_types)] at the very top -of the module to shut up that warning for the whole module (which is what I -did).

-

Constructing A Fixed Point Value

-

So how do we actually make one of these values? Well, we can always just wrap or unwrap any value in our Fx type:

-

-# #![allow(unused_variables)]
-#fn main() {
-impl<T, F: Unsigned> Fx<T, F> {
-  /// Uses the provided value directly.
-  pub fn from_raw(r: T) -> Self {
-    Fx {
-      num: r,
-      phantom: PhantomData,
-    }
-  }
-  /// Unwraps the inner value.
-  pub fn into_raw(self) -> T {
-    self.num
-  }
-}
-#}
-

I'd like to use the From trait of course, but it was giving me some trouble, i -think because of the orphan rule. Oh well.

-

If we want to be particular to the fact that these are supposed to be -numbers... that gets tricky. Rust is actually quite bad at being generic about -number types. You can use the num crate, or you -can just use a macro and invoke it once per type. Guess what we're gonna do.

-

-# #![allow(unused_variables)]
-#fn main() {
-macro_rules! fixed_point_methods {
-  ($t:ident) => {
-    impl<F: Unsigned> Fx<$t, F> {
-      /// Gives the smallest positive non-zero value.
-      pub fn precision() -> Self {
-        Fx {
-          num: 1,
-          phantom: PhantomData,
-        }
-      }
-
-      /// Makes a value with the integer part shifted into place.
-      pub fn from_int_part(i: $t) -> Self {
-        Fx {
-          num: i << F::U8,
-          phantom: PhantomData,
-        }
-      }
-    }
-  };
-}
-
-fixed_point_methods! {u8}
-fixed_point_methods! {i8}
-fixed_point_methods! {i16}
-fixed_point_methods! {u16}
-fixed_point_methods! {i32}
-fixed_point_methods! {u32}
-#}
-

Now you'd think that those can be const, but at the moment you can't have a -const function with a bound on any trait other than Sized, so they have to -be normal functions.

-

Also, we're doing something a little interesting there with from_int_part. We -can take our F type and get its constant value. There's other associated -constants if we want it in other types, and also non-const methods if you wanted -that for some reason (maybe passing it as a closure function? dunno).

-

Casting Base Values

-

Next, once we have a value in one base type we will need to be able to move it -into another base type. Unfortunately this means we gotta use the as operator, -which requires a concrete source type and a concrete destination type. There's -no easy way for us to make it generic here.

-

We could let the user use into_raw, cast, and then do from_raw, but that's -error prone because they might change the fractional bit count accidentally. -This means that we have to write a function that does the casting while -perfectly preserving the fractional bit quantity. If we wrote one function for -each conversion it'd be like 30 different possible casts (6 base types that we -support, and then 5 possible target types). Instead, we'll write it just once in -a way that takes a closure, and let the user pass a closure that does the cast. -The compiler should merge it all together quite nicely for us once optimizations -kick in.

-

This code goes outside the macro. I want to avoid too much code in the macro if -we can, it's a little easier to cope with I think.

-

-# #![allow(unused_variables)]
-#fn main() {
-  /// Casts the base type, keeping the fractional bit quantity the same.
-  pub fn cast_inner<Z, C: Fn(T) -> Z>(self, op: C) -> Fx<Z, F> {
-    Fx {
-      num: op(self.num),
-      phantom: PhantomData,
-    }
-  }
-#}
-

It's horrible and ugly, but Rust is just bad at numbers sometimes.

-

Adjusting Fractional Part

-

In addition to the base value we might want to change our fractional bit -quantity. This is actually easier that it sounds, but it also requires us to be -tricky with the generics. We can actually use some typenum type level operators -here.

-

This code goes inside the macro: we need to be able to use the left shift and -right shift, which is easiest when we just use the macro's $t as our type. We -could alternately put a similar function outside the macro and be generic on T -having the left and right shift operators by using a where clause. As much as -I'd like to avoid too much code being generated by macro, I'd even more like -to avoid generic code with huge and complicated trait bounds. It comes down to -style, and you gotta decide for yourself.

-

-# #![allow(unused_variables)]
-#fn main() {
-      /// Changes the fractional bit quantity, keeping the base type the same.
-      pub fn adjust_fractional_bits<Y: Unsigned + IsEqual<F, Output = False>>(self) -> Fx<$t, Y> {
-        let leftward_movement: i32 = Y::to_i32() - F::to_i32();
-        Fx {
-          num: if leftward_movement > 0 {
-            self.num << leftward_movement
-          } else {
-            self.num >> (-leftward_movement)
-          },
-          phantom: PhantomData,
-        }
-      }
-#}
-

There's a few things at work. First, we introduce Y as the target number of -fractional bits, and we also limit it that the target bits quantity can't be -the same as we already have using a type-level operator. If it's the same as we -started with, why are you doing the cast at all?

-

Now, once we're sure that the current bits and target bits aren't the same, we -compute target - start, and call this our "leftward movement". Example: if -we're targeting 8 bits and we're at 4 bits, we do 8-4 and get +4 as our leftward -movement. If the leftward_movement is positive we naturally shift our current -value to the left. If it's not positive then it must be negative because we -eliminated 0 as a possibility using the type-level operator, so we shift to the -right by the negative value.

-

Addition, Subtraction, Shifting, Negative, Comparisons

-

From here on we're getting help from this blog -post by Job -Vranish, so thank them if you -learn something.

-

I might have given away the game a bit with those derive traits on our fixed -point type. For a fair number of operations you can use the normal form of the -op on the inner bits as long as the fractional parts have the same quantity. -This includes equality and ordering (which we derived) as well as addition, -subtraction, and bit shifting (which we need to do ourselves).

-

This code can go outside the macro, with sufficient trait bounds.

-

-# #![allow(unused_variables)]
-#fn main() {
-impl<T: Add<Output = T>, F: Unsigned> Add for Fx<T, F> {
-  type Output = Self;
-  fn add(self, rhs: Fx<T, F>) -> Self::Output {
-    Fx {
-      num: self.num + rhs.num,
-      phantom: PhantomData,
-    }
-  }
-}
-#}
-

The bound on T makes it so that Fx<T, F> can be added any time that T can -be added to its own type with itself as the output. We can use the exact same -pattern for Sub, Shl, Shr, and Neg. With enough trait bounds, we can do -anything!

-

-# #![allow(unused_variables)]
-#fn main() {
-impl<T: Sub<Output = T>, F: Unsigned> Sub for Fx<T, F> {
-  type Output = Self;
-  fn sub(self, rhs: Fx<T, F>) -> Self::Output {
-    Fx {
-      num: self.num - rhs.num,
-      phantom: PhantomData,
-    }
-  }
-}
-
-impl<T: Shl<u32, Output = T>, F: Unsigned> Shl<u32> for Fx<T, F> {
-  type Output = Self;
-  fn shl(self, rhs: u32) -> Self::Output {
-    Fx {
-      num: self.num << rhs,
-      phantom: PhantomData,
-    }
-  }
-}
-
-impl<T: Shr<u32, Output = T>, F: Unsigned> Shr<u32> for Fx<T, F> {
-  type Output = Self;
-  fn shr(self, rhs: u32) -> Self::Output {
-    Fx {
-      num: self.num >> rhs,
-      phantom: PhantomData,
-    }
-  }
-}
-
-impl<T: Neg<Output = T>, F: Unsigned> Neg for Fx<T, F> {
-  type Output = Self;
-  fn neg(self) -> Self::Output {
-    Fx {
-      num: -self.num,
-      phantom: PhantomData,
-    }
-  }
-}
-#}
-

Unfortunately, for Shl and Shr to have as much coverage on our type as it -does on the base type (allowing just about any right hand side) we'd have to do -another macro, but I think just u32 is fine. We can always add more later if -we need.

-

We could also implement BitAnd, BitOr, BitXor, and Not, but they don't -seem relevent to our fixed point math use, and this section is getting long -already. Just use the same general patterns if you want to add it in your own -programs. Shockingly, Rem also works directly if you want it, though I don't -forsee us needing floating point remainder. Also, the GBA can't do hardware -division or remainder, and we'll have to work around that below when we -implement Div (which maybe we don't need, but it's complex enough I should -show it instead of letting people guess).

-

Note: In addition to the various Op traits, there's also OpAssign -variants. Each OpAssign is the same as Op, but takes &mut self instead of -self and then modifies in place instead of producing a fresh value. In other -words, if you want both + and += you'll need to do the AddAssign trait -too. It's not the worst thing to just write a = a+b, so I won't bother with -showing all that here. It's pretty easy to figure out for yourself if you want.

-

Multiplication

-

This is where things get more interesting. When we have two numbers A and B -they really stand for (a*f) and (b*f). If we write A*B then we're really -writing (a*f)*(b*f), which can be rewritten as (a*b)*2f, and now it's -obvious that we have one more f than we wanted to have. We have to do the -multiply of the inner value and then divide out the f. We divide by 1 << bit_count, so if we have 8 fractional bits we'll divide by 256.

-

The catch is that, when we do the multiply we're extremely likely to overflow -our base type with that multiplication step. Then we do that divide, and now our -result is basically nonsense. We can avoid this to some extent by casting up to -a higher bit type, doing the multiplication and division at higher precision, -and then casting back down. We want as much precision as possible without being -too inefficient, so we'll always cast up to 32-bit (on a 64-bit machine you'd -cast up to 64-bit instead).

-

Naturally, any signed value has to be cast up to i32 and any unsigned value -has to be cast up to u32, so we'll have to handle those separately.

-

Also, instead of doing an actual divide we can right-shift by the correct -number of bits to achieve the same effect. Except when we have a signed value -that's negative, because actual division truncates towards zero and -right-shifting truncates towards negative infinity. We can get around this by -flipping the sign, doing the shift, and flipping the sign again (which sounds -silly but it's so much faster than doing an actual division).

-

Also, again signed values can be annoying, because if the value just happens -to be i32::MIN then when you negate it you'll have... still a negative -value. I'm not 100% on this, but I think the correct thing to do at that point -is to give $t::MIN as the output num value.

-

Did you get all that? Good, because this involves casting, so we will need to -implement it three times, which calls for another macro.

-

-# #![allow(unused_variables)]
-#fn main() {
-macro_rules! fixed_point_signed_multiply {
-  ($t:ident) => {
-    impl<F: Unsigned> Mul for Fx<$t, F> {
-      type Output = Self;
-      fn mul(self, rhs: Fx<$t, F>) -> Self::Output {
-        let pre_shift = (self.num as i32).wrapping_mul(rhs.num as i32);
-        if pre_shift < 0 {
-          if pre_shift == core::i32::MIN {
-            Fx {
-              num: core::$t::MIN,
-              phantom: PhantomData,
-            }
-          } else {
-            Fx {
-              num: (-((-pre_shift) >> F::U8)) as $t,
-              phantom: PhantomData,
-            }
-          }
-        } else {
-          Fx {
-            num: (pre_shift >> F::U8) as $t,
-            phantom: PhantomData,
-          }
-        }
-      }
-    }
-  };
-}
-
-fixed_point_signed_multiply! {i8}
-fixed_point_signed_multiply! {i16}
-fixed_point_signed_multiply! {i32}
-
-macro_rules! fixed_point_unsigned_multiply {
-  ($t:ident) => {
-    impl<F: Unsigned> Mul for Fx<$t, F> {
-      type Output = Self;
-      fn mul(self, rhs: Fx<$t, F>) -> Self::Output {
-        Fx {
-          num: ((self.num as u32).wrapping_mul(rhs.num as u32) >> F::U8) as $t,
-          phantom: PhantomData,
-        }
-      }
-    }
-  };
-}
-
-fixed_point_unsigned_multiply! {u8}
-fixed_point_unsigned_multiply! {u16}
-fixed_point_unsigned_multiply! {u32}
-#}
-

Division

-

Division is similar to multiplication, but reversed. Which makes sense. This -time A/B gives (a*f)/(b*f) which is a/b, one less f than we were -after.

-

As with the multiplication version of things, we have to up-cast our inner value -as much a we can before doing the math, to allow for the most precision -possible.

-

The snag here is that the GBA has no division or remainder. Instead, the GBA has -a BIOS function you can call to do i32/i32 division.

-

This is a potential problem for us though. If we have some unsigned value, we -need it to fit within the positive space of an i32 after the multiply so -that we can cast it to i32, call the BIOS function that only works on i32 -values, and cast it back to its actual type.

-
    -
  • If you have a u8 you're always okay, even with 8 floating bits.
  • -
  • If you have a u16 you're okay even with a maximum value up to 15 floating -bits, but having a maximum value and 16 floating bits makes it break.
  • -
  • If you have a u32 you're probably going to be in trouble all the time.
  • -
-

So... ugh, there's not much we can do about this. For now we'll just have to -suffer some.

-

// TODO: find a numerics book that tells us how to do u32/u32 divisions.

-

-# #![allow(unused_variables)]
-#fn main() {
-macro_rules! fixed_point_signed_division {
-  ($t:ident) => {
-    impl<F: Unsigned> Div for Fx<$t, F> {
-      type Output = Self;
-      fn div(self, rhs: Fx<$t, F>) -> Self::Output {
-        let mul_output: i32 = (self.num as i32).wrapping_mul(1 << F::U8);
-        let divide_result: i32 = crate::bios::div(mul_output, rhs.num as i32);
-        Fx {
-          num: divide_result as $t,
-          phantom: PhantomData,
-        }
-      }
-    }
-  };
-}
-
-fixed_point_signed_division! {i8}
-fixed_point_signed_division! {i16}
-fixed_point_signed_division! {i32}
-
-macro_rules! fixed_point_unsigned_division {
-  ($t:ident) => {
-    impl<F: Unsigned> Div for Fx<$t, F> {
-      type Output = Self;
-      fn div(self, rhs: Fx<$t, F>) -> Self::Output {
-        let mul_output: i32 = (self.num as i32).wrapping_mul(1 << F::U8);
-        let divide_result: i32 = crate::bios::div(mul_output, rhs.num as i32);
-        Fx {
-          num: divide_result as $t,
-          phantom: PhantomData,
-        }
-      }
-    }
-  };
-}
-
-fixed_point_unsigned_division! {u8}
-fixed_point_unsigned_division! {u16}
-fixed_point_unsigned_division! {u32}
-#}
-

Trigonometry

-

TODO: look up tables! arcbits!

-

Just Using A Crate

-

If, after seeing all that, and seeing that I still didn't even cover every -possible trait impl that you might want for all the possible types... if after -all that you feel too intimidated, then I'll cave a bit on your behalf and -suggest to you that the fixed crate seems to -be the best crate available for fixed point math.

-

I have not tested its use on the GBA myself.

-

It's just my recommendation from looking at the docs of the various options -available, if you really wanted to just have a crate for it.

-

Volatile Destination

-

TODO: update this when we can make more stuff const

-

Volatile Memory

-

The compiler is an eager friend, so when it sees a read or a write that won't -have an effect, it eliminates that read or write. For example, if we write

-

-# #![allow(unused_variables)]
-#fn main() {
-let mut x = 5;
-x = 7;
-#}
-

The compiler won't actually ever put 5 into x. It'll skip straight to putting -7 in x, because we never read from x when it's 5, so that's a safe change to -make. Normally, values are stored in RAM, which has no side effects when you -read and write from it. RAM is purely for keeping notes about values you'll need -later on.

-

However, what if we had a bit of hardware where we wanted to do a write and that -did something other than keeping the value for us to look at later? As you saw -in the hello_magic example, we have to use a write_volatile operation. -Volatile means "just do it anyway". The compiler thinks that it's pointless, but -we know better, so we can force it to really do exactly what we say by using -write_volatile instead of write.

-

This is kinda error prone though, right? Because it's just a raw pointer, so we -might forget to use write_volatile at some point.

-

Instead, we want a type that's always going to use volatile reads and writes. -Also, we want a pointer type that lets our reads and writes to be as safe as -possible once we've unsafely constructed the initial value.

-

Constructing The VolAddress Type

-

First, we want a type that stores a location within the address space. This can -be a pointer, or a usize, and we'll use a usize because that's easier to -work with in a const context (and we want to have const when we can get it). -We'll also have our type use NonZeroUsize instead of just usize so that -Option<VolAddress<T>> stays as a single machine word. This helps quite a bit -when we want to iterate over the addresses of a block of memory (such as -locations within the palette memory). Hardware is never at the null address -anyway. Also, if we had just an address number then we wouldn't be able to -track what type the address is for. We need some -PhantomData, -and specifically we need the phantom data to be for *mut T:

-
    -
  • If we used *const T that'd have the wrong -variance.
  • -
  • If we used &mut T then that's fusing in the ideas of lifetime and -exclusive access to our type. That's potentially important, but that's also -an abstraction we'll build on top of this VolAddress type if we need it.
  • -
-

One abstraction layer at a time, so we start with just a phantom pointer. This gives us a type that looks like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[derive(Debug)]
-#[repr(transparent)]
-pub struct VolAddress<T> {
-  address: NonZeroUsize,
-  marker: PhantomData<*mut T>,
-}
-#}
-

Now, because of how derive is specified, it derives traits if the generic -parameter supports those traits. Since our type is like a pointer, the traits -it supports are distinct from whatever traits the target type supports. So we'll -provide those implementations manually.

-

-# #![allow(unused_variables)]
-#fn main() {
-impl<T> Clone for VolAddress<T> {
-  fn clone(&self) -> Self {
-    *self
-  }
-}
-impl<T> Copy for VolAddress<T> {}
-impl<T> PartialEq for VolAddress<T> {
-  fn eq(&self, other: &Self) -> bool {
-    self.address == other.address
-  }
-}
-impl<T> Eq for VolAddress<T> {}
-impl<T> PartialOrd for VolAddress<T> {
-  fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
-    Some(self.address.cmp(&other.address))
-  }
-}
-impl<T> Ord for VolAddress<T> {
-  fn cmp(&self, other: &Self) -> Ordering {
-    self.address.cmp(&other.address)
-  }
-}
-#}
-

Boilerplate junk, not interesting. There's a reason that you derive those traits -99% of the time in Rust.

-

Constructing A VolAddress Value

-

Okay so here's the next core concept: If we unsafely construct a -VolAddress<T>, then we can safely use the value once it's been properly -created.

-

-# #![allow(unused_variables)]
-#fn main() {
-// you'll need these features enabled and a recent nightly
-#![feature(const_int_wrapping)]
-#![feature(min_const_unsafe_fn)]
-
-impl<T> VolAddress<T> {
-  pub const unsafe fn new_unchecked(address: usize) -> Self {
-    VolAddress {
-      address: NonZeroUsize::new_unchecked(address),
-      marker: PhantomData,
-    }
-  }
-  pub const unsafe fn cast<Z>(self) -> VolAddress<Z> {
-    VolAddress {
-      address: self.address,
-      marker: PhantomData,
-    }
-  }
-  pub unsafe fn offset(self, offset: isize) -> Self {
-    VolAddress {
-      address: NonZeroUsize::new_unchecked(self.address.get().wrapping_add(offset as usize * core::mem::size_of::<T>())),
-      marker: PhantomData,
-    }
-  }
-}
-#}
-

So what are the unsafety rules here?

-
    -
  • Non-null, obviously.
  • -
  • Must be aligned for T
  • -
  • Must always produce valid bit patterns for T
  • -
  • Must not be part of the address space that Rust's stack or allocator will ever -uses.
  • -
-

So, again using the hello_magic example, we had

-

-# #![allow(unused_variables)]
-#fn main() {
-(0x400_0000 as *mut u16).write_volatile(0x0403);
-#}
-

And instead we could declare

-

-# #![allow(unused_variables)]
-#fn main() {
-const MAGIC_LOCATION: VolAddress<u16> = unsafe { VolAddress::new_unchecked(0x400_0000) };
-#}
-

Using A VolAddress Value

-

Now that we've named the magic location, we want to write to it.

-

-# #![allow(unused_variables)]
-#fn main() {
-impl<T> VolAddress<T> {
-  pub fn read(self) -> T
-  where
-    T: Copy,
-  {
-    unsafe { (self.address.get() as *mut T).read_volatile() }
-  }
-  pub unsafe fn read_non_copy(self) -> T {
-    (self.address.get() as *mut T).read_volatile()
-  }
-  pub fn write(self, val: T) {
-    unsafe { (self.address.get() as *mut T).write_volatile(val) }
-  }
-}
-#}
-

So if the type is Copy we can read it as much as we want. If, somehow, the -type isn't Copy, then it might be Drop, and that means if we read out a -value over and over we could cause the drop method to trigger UB. Since the -end user might really know what they're doing, we provide an unsafe backup -read_non_copy.

-

On the other hand, we can write to the location as much as we want. Even if -the type isn't Copy, not running Drop is safe, so a write is always -safe.

-

Now we can write to our magical location.

-

-# #![allow(unused_variables)]
-#fn main() {
-MAGIC_LOCATION.write(0x0403);
-#}
-

VolAddress Iteration

-

We've already seen that sometimes we want to have a base address of some sort -and then offset from that location to another. What if we wanted to iterate over -all the locations. That's not particularly hard.

-

-# #![allow(unused_variables)]
-#fn main() {
-impl<T> VolAddress<T> {
-  pub const unsafe fn iter_slots(self, slots: usize) -> VolAddressIter<T> {
-    VolAddressIter { vol_address: self, slots }
-  }
-}
-
-#[derive(Debug)]
-pub struct VolAddressIter<T> {
-  vol_address: VolAddress<T>,
-  slots: usize,
-}
-impl<T> Clone for VolAddressIter<T> {
-  fn clone(&self) -> Self {
-    VolAddressIter {
-      vol_address: self.vol_address,
-      slots: self.slots,
-    }
-  }
-}
-impl<T> PartialEq for VolAddressIter<T> {
-  fn eq(&self, other: &Self) -> bool {
-    self.vol_address == other.vol_address && self.slots == other.slots
-  }
-}
-impl<T> Eq for VolAddressIter<T> {}
-impl<T> Iterator for VolAddressIter<T> {
-  type Item = VolAddress<T>;
-
-  fn next(&mut self) -> Option<Self::Item> {
-    if self.slots > 0 {
-      let out = self.vol_address;
-      unsafe {
-        self.slots -= 1;
-        self.vol_address = self.vol_address.offset(1);
-      }
-      Some(out)
-    } else {
-      None
-    }
-  }
-}
-impl<T> FusedIterator for VolAddressIter<T> {}
-#}
-

VolAddressBlock

-

Obviously, having a base address and a length exist separately is error prone. -There's a good reason for slices to keep their pointer and their length -together. We want something like that, which we'll call a "block" because -"array" and "slice" are already things in Rust.

-

-# #![allow(unused_variables)]
-#fn main() {
-#[derive(Debug)]
-pub struct VolAddressBlock<T> {
-  vol_address: VolAddress<T>,
-  slots: usize,
-}
-impl<T> Clone for VolAddressBlock<T> {
-  fn clone(&self) -> Self {
-    VolAddressBlock {
-      vol_address: self.vol_address,
-      slots: self.slots,
-    }
-  }
-}
-impl<T> PartialEq for VolAddressBlock<T> {
-  fn eq(&self, other: &Self) -> bool {
-    self.vol_address == other.vol_address && self.slots == other.slots
-  }
-}
-impl<T> Eq for VolAddressBlock<T> {}
-
-impl<T> VolAddressBlock<T> {
-  pub const unsafe fn new_unchecked(vol_address: VolAddress<T>, slots: usize) -> Self {
-    VolAddressBlock { vol_address, slots }
-  }
-  pub const fn iter(self) -> VolAddressIter<T> {
-    VolAddressIter {
-      vol_address: self.vol_address,
-      slots: self.slots,
-    }
-  }
-  pub unsafe fn index_unchecked(self, slot: usize) -> VolAddress<T> {
-    self.vol_address.offset(slot as isize)
-  }
-  pub fn index(self, slot: usize) -> VolAddress<T> {
-    if slot < self.slots {
-      unsafe { self.vol_address.offset(slot as isize) }
-    } else {
-      panic!("Index Requested: {} >= Bound: {}", slot, self.slots)
-    }
-  }
-  pub fn get(self, slot: usize) -> Option<VolAddress<T>> {
-    if slot < self.slots {
-      unsafe { Some(self.vol_address.offset(slot as isize)) }
-    } else {
-      None
-    }
-  }
-}
-#}
-

Now we can have something like:

-

-# #![allow(unused_variables)]
-#fn main() {
-const OTHER_MAGIC: VolAddressBlock<u16> = unsafe {
-  VolAddressBlock::new_unchecked(
-    VolAddress::new_unchecked(0x600_0000),
-    240 * 160
-  )
-};
-
-OTHER_MAGIC.index(120 + 80 * 240).write_volatile(0x001F);
-OTHER_MAGIC.index(136 + 80 * 240).write_volatile(0x03E0);
-OTHER_MAGIC.index(120 + 96 * 240).write_volatile(0x7C00);
-#}
-

Docs?

-

If you wanna see these types and methods with a full docs write up you should -check the GBA crate's source.

-

Volatile ASM

-

In addition to some memory locations being volatile, it's also possible for -inline assembly to be declared volatile. This is basically the same idea, "hey -just do what I'm telling you, don't get smart about it".

-

Normally when you have some asm! it's basically treated like a function, -there's inputs and outputs and the compiler will try to optimize it so that if -you don't actually use the outputs it won't bother with doing those -instructions. However, asm! is basically a pure black box, so the compiler -doesn't know what's happening inside at all, and it can't see if there's any -important side effects going on.

-

An example of an important side effect that doesn't have output values would be -putting the CPU into a low power state while we want for the next VBlank. This -lets us save quite a bit of battery power. It requires some setup to be done -safely (otherwise the GBA won't ever actually wake back up from the low power -state), but the asm! you use once you're ready is just a single instruction -with no return value. The compiler can't tell what's going on, so you just have -to say "do it anyway".

-

Note that if you use a linker script to include any ASM with your Rust program -(eg: the crt0.s file that we setup in the "Development Setup" section), all of -that ASM is "volatile" for these purposes. Volatile isn't actually a hardware -concept, it's just an LLVM concept, and the linker script runs after LLVM has -done its work.

-

Newtype

-

TODO: we've already used newtype twice by now (fixed point values and volatile -addresses), so we need to adjust how we start this section.

-

There's a great Zero Cost abstraction that we'll be using a lot that you might -not already be familiar with: we're talking about the "Newtype Pattern"!

-

Now, I told you to read the Rust Book before you read this book, and I'm sure -you're all good students who wouldn't sneak into this book without doing the -required reading, so I'm sure you all remember exactly what I'm talking about, -because they touch on the newtype concept in the book twice, in two very long -named sections:

- -

...Yeah... The Rust Book doesn't know how to make a short sub-section name to -save its life. Shame.

-

Newtype Basics

-

So, we have all these pieces of data, and we want to keep them separated, and we -don't wanna pay the cost for it at runtime. Well, we're in luck, we can pay the -cost at compile time.

-

-# #![allow(unused_variables)]
-#fn main() {
-pub struct PixelColor(u16);
-#}
-

TODO: we've already talked about repr(transparent) by now

-

Ah, except that, as I'm sure you remember from The -Rustonomicon -(and from the RFC too, of course), if we have a single field struct that's -sometimes different from having just the bare value, so we should be using -#[repr(transparent)] with our newtypes.

-

-# #![allow(unused_variables)]
-#fn main() {
-#[repr(transparent)]
-pub struct PixelColor(u16);
-#}
-

And then we'll need to do that same thing for every other newtype we want.

-

Except there's only two tiny parts that actually differ between newtype -declarations: the new name and the base type. All the rest is just the same rote -code over and over. Generating piles and piles of boilerplate code? Sounds like -a job for a macro to me!

-

Making It A Macro

-

If you're going to do much with macros you should definitely read through The -Little Book of Rust -Macros, but we won't be -doing too much so you can just follow along here a bit if you like.

-

The most basic version of a newtype macro starts like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[macro_export]
-macro_rules! newtype {
-  ($new_name:ident, $old_name:ident) => {
-    #[repr(transparent)]
-    pub struct $new_name($old_name);
-  };
-}
-#}
-

The #[macro_export] makes it exported by the current module (like pub -kinda), and then we have one expansion option that takes an identifier, a ,, -and then a second identifier. The new name is the outer type we'll be using, and -the old name is the inner type that's being wrapped. You'd use our new macro -something like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-newtype! {PixelColorCurly, u16}
-
-newtype!(PixelColorParens, u16);
-
-newtype![PixelColorBrackets, u16];
-#}
-

Note that you can invoke the macro with the outermost grouping as any of (), -[], or {}. It makes no particular difference to the macro. Also, that space -in the first version is kinda to show off that you can put white space in -between the macro name and the grouping if you want. The difference is mostly -style, but there are some rules and considerations here:

-
    -
  • If you use curly braces then you must not put a ; after the invocation.
  • -
  • If you use parentheses or brackets then you must put the ; at the end.
  • -
  • Rustfmt cares which you use and formats accordingly: -
      -
    • Curly brace macro use mostly gets treated like a code block.
    • -
    • Parentheses macro use mostly gets treated like a function call.
    • -
    • Bracket macro use mostly gets treated like an array declaration.
    • -
    -
  • -
-

As a reminder: remember that macro_rules macros have to appear before -they're invoked in your source, so the newtype macro will always have to be at -the very top of your file, or if you put it in a module within your project -you'll need to declare the module before anything that uses it.

-

Upgrade That Macro!

-

We also want to be able to add derive stuff and doc comments to our newtype. -Within the context of macro_rules! definitions these are called "meta". Since -we can have any number of them we wrap it all up in a "zero or more" matcher. -Then our macro looks like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[macro_export]
-macro_rules! newtype {
-  ($(#[$attr:meta])* $new_name:ident, $old_name:ident) => {
-    $(#[$attr])*
-    #[repr(transparent)]
-    pub struct $new_name($old_name);
-  };
-}
-#}
-

So now we can write

-

-# #![allow(unused_variables)]
-#fn main() {
-newtype! {
-  /// Color on the GBA gives 5 bits for each channel, the highest bit is ignored.
-  #[derive(Debug, Clone, Copy)]
-  PixelColor, u16
-}
-#}
-

Next, we can allow for the wrapping of types that aren't just a single -identifier by changing $old_name from :ident to :ty. We can't also do -this for the $new_type part because declaring a new struct expects a valid -identifier that's not already declared (obviously), and :ty is intended for -capturing types that already exist.

-

-# #![allow(unused_variables)]
-#fn main() {
-#[macro_export]
-macro_rules! newtype {
-  ($(#[$attr:meta])* $new_name:ident, $old_name:ty) => {
-    $(#[$attr])*
-    #[repr(transparent)]
-    pub struct $new_name($old_name);
-  };
-}
-#}
-

Next of course we'll want to usually have a new method that's const and just -gives a 0 value. We won't always be making a newtype over a number value, but we -often will. It's usually silly to have a new method with no arguments since we -might as well just impl Default, but Default::default isn't const, so -having pub const fn new() -> Self is justified here.

-

Here, the token 0 is given the {integer} type, which can be converted into -any of the integer types as needed, but it still can't be converted into an -array type or a pointer or things like that. Accordingly we've added the "no -frills" option which declares the struct and no new method.

-

-# #![allow(unused_variables)]
-#fn main() {
-#[macro_export]
-macro_rules! newtype {
-  ($(#[$attr:meta])* $new_name:ident, $old_name:ty) => {
-    $(#[$attr])*
-    #[repr(transparent)]
-    pub struct $new_name($old_name);
-    impl $new_name {
-      /// A `const` "zero value" constructor
-      pub const fn new() -> Self {
-        $new_name(0)
-      }
-    }
-  };
-  ($(#[$attr:meta])* $new_name:ident, $old_name:ty, no frills) => {
-    $(#[$attr])*
-    #[repr(transparent)]
-    pub struct $new_name($old_name);
-  };
-}
-#}
-

Finally, we usually want to have the wrapped value be totally private, but there -are occasions where that's not the case. For this, we can allow the wrapped -field to accept a visibility modifier.

-

-# #![allow(unused_variables)]
-#fn main() {
-#[macro_export]
-macro_rules! newtype {
-  ($(#[$attr:meta])* $new_name:ident, $v:vis $old_name:ty) => {
-    $(#[$attr])*
-    #[repr(transparent)]
-    pub struct $new_name($v $old_name);
-    impl $new_name {
-      /// A `const` "zero value" constructor
-      pub const fn new() -> Self {
-        $new_name(0)
-      }
-    }
-  };
-  ($(#[$attr:meta])* $new_name:ident, $v:vis $old_name:ty, no frills) => {
-    $(#[$attr])*
-    #[repr(transparent)]
-    pub struct $new_name($v $old_name);
-  };
-}
-#}
-

Constant Assertions

-

Have you ever wanted to assert things even before runtime? We all have, of -course. Particularly when the runtime machine is a poor little GBA, we'd like to -have the machine doing the compile handle as much checking as possible.

-

Enter the static assertions crate, which -provides a way to let you assert on a const expression.

-

This is an amazing crate that you should definitely use when you can.

-

It's written by Nikolai Vazquez, and they kindly -wrote up a blog -post that -explains the thinking behind it.

-

However, I promised that each example would be single file, and I also promised -to explain what's going on as we go, so we'll briefly touch upon giving an -explanation here.

-

How We Const Assert

-

Alright, as it stands (2018-12-15), we can't use if in a const context.

-

Since we can't use if, we can't use a normal assert!. Some day it will be -possible, and a failed assert at compile time will be a compile error and a -failed assert at run time will be a panic and we'll have a nice unified -programming experience. We can add runtime-only assertions by being a little -tricky with the compiler.

-

If we write

-

-# #![allow(unused_variables)]
-#fn main() {
-const ASSERT: usize = 0 - 1;
-#}
-

that gives a warning, since the math would underflow. We can upgrade that -warning to a hard error:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[deny(const_err)]
-const ASSERT: usize = 0 - 1;
-#}
-

And to make our construction reusable we can enable the -underscore_const_names feature -in our program (or library) and then give each such const an underscore for a -name.

-

-# #![allow(unused_variables)]
-#![feature(underscore_const_names)]
-
-#fn main() {
-#[deny(const_err)]
-const _: usize = 0 - 1;
-#}
-

Now we wrap this in a macro where we give a bool expression as input. We -negate the bool then cast it to a usize, meaning that true negates into -false, which becomes 0usize, and then there's no underflow error. Or if the -input was false, it negates into true, then becomes 1usize, and then the -underflow error fires.

-

-# #![allow(unused_variables)]
-#fn main() {
-macro_rules! const_assert {
-  ($condition:expr) => {
-    #[deny(const_err)]
-    #[allow(dead_code)]
-    const ASSERT: usize = 0 - !$condition as usize;
-  }
-}
-#}
-

Technically, written like this, the expression can be anything with a -core::ops::Not implementation that can also be as cast into usize. That's -bool, but also basically all the other number types. Since we want to ensure -that we get proper looking type errors when things go wrong, we can use -($condition && true) to enforce that we get a bool (thanks to Talchas for -that particular suggestion).

-

-# #![allow(unused_variables)]
-#fn main() {
-macro_rules! const_assert {
-  ($condition:expr) => {
-    #[deny(const_err)]
-    #[allow(dead_code)]
-    const _: usize = 0 - !($condition && true) as usize;
-  }
-}
-#}
-

Asserting Something

-

As an example of how we might use a const_assert, we'll do a demo with colors. -There's a red, blue, and green channel. We store colors in a u16 with 5 bits -for each channel.

-

-# #![allow(unused_variables)]
-#fn main() {
-newtype! {
-  #[derive(Debug, Clone, Copy, PartialEq, Eq)]
-  Color, u16
-}
-#}
-

And when we're building a color, we're passing in u16 values, but they could -be using more than just 5 bits of space. We want to make sure that each channel -is 31 or less, so we can make a color builder that does a const_assert! on the -value of each channel.

-

-# #![allow(unused_variables)]
-#fn main() {
-macro_rules! rgb {
-  ($r:expr, $g:expr, $b:expr) => {
-    {
-      const_assert!($r <= 31);
-      const_assert!($g <= 31);
-      const_assert!($b <= 31);
-      Color($b << 10 | $g << 5 | $r)
-    }
-  }
-}
-#}
-

And then we can declare some colors

-

-# #![allow(unused_variables)]
-#fn main() {
-const RED: Color = rgb!(31, 0, 0);
-
-const BLUE: Color = rgb!(31, 500, 0);
-#}
-

The second one is clearly out of bounds and it fires an error just like we -wanted.

-

Broad Concepts

-

The GameBoy Advance sits in a middle place between the chthonic game consoles of -the ancient past and the "small PC in a funny case" consoles of the modern age.

-

On the one hand, yeah, you're gonna find a few strange conventions as you learn -all the ropes.

-

On the other, at least we're writing in Rust at all, and not having to do all -the assembly by hand.

-

This chapter for "concepts" has a section for each part of the GBA's hardware -memory map, going by increasing order of base address value. The sections try to -explain as much as possible while sticking to just the concerns you might have -regarding that part of the memory map.

-

For an assessment of how to wrangle all three parts of the video system (PALRAM, -VRAM, and OAM), along with the correct IO registers, into something that shows a -picture, you'll want the Video chapter.

-

Similarly, the "IO Registers" part of the GBA actually controls how you interact -with every single bit of hardware connected to the GBA. A full description of -everything is obviously too much for just one section of the book. Instead you -get an overview of general IO register rules and advice. Each particular -register is described in the appropriate sections of either the Video or -Non-Video chapters.

-

Bus Size

-

TODO: describe this

-

Minimum Write Size

-

TODO: talk about parts where you can't write one byte at a time

-

Volatile or Not?

-

TODO: discuss what memory should be used volatile style and what can be used normal style.

-

CPU

-

BIOS

-
    -
  • Address Span: 0x0 to 0x3FFF (16k)
  • -
-

The BIOS of the GBA is a small read-only -portion of memory at the very base of the address space. However, it is also -hardware protected against reading, so if you try to read from BIOS memory when -the program counter isn't pointed into the BIOS (eg: any time code you write -is executing) then you get basically garbage -data back.

-

So we're not going to spend time here talking about what bits to read or write -within BIOS memory like we do with the other sections. Instead we're going to -spend time talking about inline -assembly -(tracking issue) and then use -it to call the GBA BIOS -Functions.

-

Note that BIOS calls have more overhead than normal function calls, so don't -go using them all over the place if you don't have to. They're also usually -written more to be compact in terms of code than for raw speed, so you actually -can out speed them in some cases. Between the increased overhead and not being -as speed optimized, you can sometimes do a faster job without calling the BIOS -at all. (TODO: investigate more about what parts of the BIOS we could -potentially offer faster alternatives for.)

-

I'd like to take a moment to thank Marc Brinkmann -(with contributions from Oliver Schneider and -Philipp Oppermann) for writing this blog -post. It's at least -ten times the tutorial quality as the asm entry in the Unstable Book has. In -fairness to the Unstable Book, the actual spec of how inline ASM works in rust -is "basically what clang does", and that's specified as "basically what GCC -does", and that's basically/shockingly not specified much at all despite GCC -being like 30 years old.

-

So let's be slow and pedantic about this process.

-

Inline ASM

-

Fair Warning: Inline asm is one of the least stable parts of Rust overall, -and if you write bad things you can trigger internal compiler errors and panics -and crashes and make LLVM choke and die without explanation. If you write some -inline asm and then suddenly your program suddenly stops compiling without -explanation, try commenting out that whole inline asm use and see if it's -causing the problem. Double check that you've written every single part of the -asm call absolutely correctly, etc, etc.

-

Bonus Warning: The general information that follows regarding the asm macro -is consistent from system to system, but specific information about register -names, register quantities, asm instruction argument ordering, and so on is -specific to ARM on the GBA. If you're programming for any other device you'll -need to carefully investigate that before you begin.

-

Now then, with those out of the way, the inline asm docs describe an asm call as -looking like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-asm!(assembly template
-   : output operands
-   : input operands
-   : clobbers
-   : options
-   );
-#}
-

And once you stick a lot of stuff in there it can absolutely be hard to -remember the ordering of the elements. So we'll start with a code block that -has some comments thrown in on each line:

-

-# #![allow(unused_variables)]
-#fn main() {
-asm!(/* ASM */ TODO
-    :/* OUT */ TODO
-    :/* INP */ TODO
-    :/* CLO */ TODO
-    :/* OPT */
-);
-#}
-

Now we have to decide what we're gonna write. Obviously we're going to do some -instructions, but those instructions use registers, and how are we gonna talk -about them? We've got two choices.

-
    -
  1. -

    We can pick each and every register used by specifying exact register names. -In THUMB mode we have 8 registers available, named r0 through r7. If you -switch into 32-bit mode there's additional registers that are also available.

    -
  2. -
  3. -

    We can specify slots for registers we need and let LLVM decide. In this style -you name your slots $0, $1 and so on. Slot numbers are assigned first to -all specified outputs, then to all specified inputs, in the order that you -list them.

    -
  4. -
-

In the case of the GBA BIOS, each BIOS function has pre-designated input and -output registers, so we will use the first style. If you use inline ASM in other -parts of your code you're free to use the second style.

-

Assembly

-

This is just one big string literal. You write out one instruction per line, and -excess whitespace is ignored. You can also do comments within your assembly -using ; to start a comment that goes until the end of the line.

-

Assembly convention doesn't consider it unreasonable to comment potentially as -much as every single line of asm that you write when you're getting used to -things. Or even if you are used to things. This is cryptic stuff, there's a -reason we avoid writing in it as much as possible.

-

Remember that our Rust code is in 16-bit mode. You can switch to 32-bit mode -within your asm as long as you switch back by the time the block ends. Otherwise -you'll have a bad time.

-

Outputs

-

A comma separated list. Each entry looks like

-
    -
  • "constraint" (binding)
  • -
-

An output constraint starts with a symbol:

-
    -
  • = for write only
  • -
  • + for reads and writes
  • -
  • & for for "early clobber", meaning that you'll write to this at some point -before all input values have been read. It prevents this register from being -assigned to an input register.
  • -
-

Followed by either the letter r (if you want LLVM to pick the register to -use) or curly braces around a specific register (if you want to pick).

-
    -
  • The binding can be any single 32-bit or smaller value.
  • -
  • If your binding has bit pattern requirements ("must be non-zero", etc) you are -responsible for upholding that.
  • -
  • If your binding type will try to Drop later then you are responsible for it -being in a fit state to do that.
  • -
  • The binding must be either a mutable binding or a binding that was -pre-declared but not yet assigned.
  • -
-

Anything else is UB.

-

Inputs

-

This is a similar comma separated list.

-
    -
  • "constraint" (binding)
  • -
-

An input constraint doesn't have the symbol prefix, you just pick either r or -a named register with curly braces around it.

-
    -
  • An input binding must be a single 32-bit or smaller value.
  • -
  • An input binding should be a type that is Copy but this is not an absolute -requirement. Having the input be read is semantically similar to using -core::ptr::read(&binding) and forgetting the value when you're done.
  • -
-

Clobbers

-

Sometimes your asm will touch registers other than the ones declared for input -and output.

-

Clobbers are declared as a comma separated list of string literals naming -specific registers. You don't use curly braces with clobbers.

-

LLVM needs to know this information. It can move things around to keep your -data safe, but only if you tell it what's about to happen.

-

Failure to define all of your clobbers can cause UB.

-

Options

-

There's only one option we'd care to specify. That option is "volatile".

-

Just like with a function call, LLVM will skip a block of asm if it doesn't see -that any outputs from the asm were used later on. Nearly every single BIOS call -(other than the math operations) will need to be marked as "volatile".

-

BIOS ASM

-
    -
  • Inputs are always r0, r1, r2, and/or r3, depending on function.
  • -
  • Outputs are always zero or more of r0, r1, and r3.
  • -
  • Any of the output registers that aren't actually used should be marked as -clobbered.
  • -
  • All other registers are unaffected.
  • -
-

All of the GBA BIOS calls are performed using the -swi -instruction, combined with a value depending on what BIOS function you're trying -to invoke. If you're in 16-bit code you use the value directly, and if you're in -32-bit mode you shift the value up by 16 bits first.

-

Example BIOS Function: Division

-

For our example we'll use the division function, because GBATEK gives very clear -instructions on how each register is used with that one:

-
Signed Division, r0/r1.
-  r0  signed 32bit Number
-  r1  signed 32bit Denom
-Return:
-  r0  Number DIV Denom ;signed
-  r1  Number MOD Denom ;signed
-  r3  ABS (Number DIV Denom) ;unsigned
-For example, incoming -1234, 10 should return -123, -4, +123.
-The function usually gets caught in an endless loop upon division by zero.
-
-

The math folks tell me that the r1 value should be properly called the -"remainder" not the "modulus". We'll go with that for our function, doesn't hurt -to use the correct names. Our Rust function has an assert against dividing by -0, then we name some bindings without giving them a value, we make the asm -call, and then return what we got.

-

-# #![allow(unused_variables)]
-#fn main() {
-pub fn div_rem(numerator: i32, denominator: i32) -> (i32, i32) {
-  assert!(denominator != 0);
-  let div_out: i32;
-  let rem_out: i32;
-  unsafe {
-    asm!(/* ASM */ "swi 0x06"
-        :/* OUT */ "={r0}"(div_out), "={r1}"(rem_out)
-        :/* INP */ "{r0}"(numerator), "{r1}"(denominator)
-        :/* CLO */ "r3"
-        :/* OPT */
-    );
-  }
-  (div_out, rem_out)
-}
-#}
-

I hope this all makes sense by now.

-

Specific BIOS Functions

-

For a full list of all the specific BIOS functions and their use you should -check the gba::bios module within the gba crate. There's just so many of -them that enumerating them all here wouldn't serve much purpose.

-

Which is not to say that we'll never cover any BIOS functions in this book! -Instead, we'll simply mention them when whenever they're relevent to the task at -hand (such as controlling sound or waiting for vblank).

-

//TODO: list/name all BIOS functions as well as what they relate to elsewhere.

-

Work RAM

-

External Work RAM (EWRAM)

-
    -
  • Address Span: 0x2000000 to 0x203FFFF (256k)
  • -
-

This is a big pile of space, the use of which is up to each game. However, the -external work ram has only a 16-bit bus (if you read/write a 32-bit value it -silently breaks it up into two 16-bit operations) and also 2 wait cycles (extra -CPU cycles that you have to expend per 16-bit bus use).

-

It's most helpful to think of EWRAM as slower, distant memory, similar to the -"heap" in a normal application. You can take the time to go store something -within EWRAM, or to load it out of EWRAM, but if you've got several operations -to do in a row and you're worried about time you should pull that value into -local memory, work on your local copy, and then push it back out to EWRAM.

-

Internal Work RAM (IWRAM)

-
    -
  • Address Span: 0x3000000 to 0x3007FFF (32k)
  • -
-

This is a smaller pile of space, but it has a 32-bit bus and no wait.

-

By default, 0x3007F00 to 0x3007FFF is reserved for interrupt and BIOS use. -The rest of it is mostly up to you. The user's stack space starts at 0x3007F00 -and proceeds down from there. For best results you should probably start at -0x3000000 and then go upwards. Under normal use it's unlikely that the two -memory regions will crash into each other.

-

IO Registers

-
    -
  • Address Span: 0x400_0000 to 0x400_03FE
  • -
-

Palette RAM (PALRAM)

-
    -
  • Address Span: 0x500_0000 to 0x500_03FF (1k)
  • -
-

Palette RAM has a 16-bit bus, which isn't really a problem because it -conceptually just holds u16 values. There's no automatic wait state, but if -you try to access the same location that the display controller is accessing you -get bumped by 1 cycle. Since the display controller can use the palette ram any -number of times per scanline it's basically impossible to predict if you'll have -to do a wait or not during VDraw. During VBlank you won't have any wait of -course.

-

PALRAM is among the memory where there's weirdness if you try to write just one -byte: if you try to write just 1 byte, it writes that byte into both parts of -the larger 16-bit location. This doesn't really affect us much with PALRAM, -because palette values are all supposed to be u16 anyway.

-

The palette memory actually contains not one, but two sets of palettes. First -there's 256 entries for the background palette data (starting at 0x500_0000), -and then there's 256 entries for object palette data (starting at 0x500_0200).

-

The GBA also has two modes for palette access: 8-bits-per-pixel (8bpp) and -4-bits-per-pixel (4bpp).

-
    -
  • In 8bpp mode an 8-bit palette index value within a background or sprite -simply indexes directly into the 256 slots for that type of thing.
  • -
  • In 4bpp mode a 4-bit palette index value within a background or sprite -specifies an index within a particular "palbank" (16 palette entries each), -and then a separate setting outside of the graphical data determines which -palbank is to be used for that background or object (the screen entry data for -backgrounds, and the object attributes for objects).
  • -
-

Transparency

-

When a pixel within a background or object specifies index 0 as its palette -entry it is treated as a transparent pixel. This means that in 8bpp mode there's -only 255 actual color options (0 being transparent), and in 4bpp mode there's -only 15 actual color options available within each palbank (the 0th entry of -each palbank is transparent).

-

Individual backgrounds, and individual objects, each determine if they're 4bpp -or 8bpp separately, so a given overall palette slot might map to a used color in -8bpp and an unused/transparent color in 4bpp. If you're a palette wizard.

-

Palette slot 0 of the overall background palette is used to determine the -"backdrop" color. That's the color you see if no background or object ends up -being rendered within a given pixel.

-

Since display mode 3 and display mode 5 don't use the palette, they cannot -benefit from transparency.

-

Video RAM (VRAM)

-
    -
  • Address Span: 0x600_0000 to 0x601_7FFF (96k)
  • -
-

We've used this before! VRAM has a 16-bit bus and no wait. However, the same as -with PALRAM, the "you might have to wait if the display controller is looking at -it" rule applies here.

-

Unfortunately there's not much more exact detail that can be given about VRAM. -The use of the memory depends on the video mode that you're using.

-

One general detail of note is that you can't write individual bytes to any part -of VRAM. Depending on mode and location, you'll either get your bytes doubled -into both the upper and lower parts of the 16-bit location targeted, or you -won't even affect the memory. This usually isn't a big deal, except in two -situations:

-
    -
  • In Mode 4, if you want to change just 1 pixel, you'll have to be very careful -to read the old u16, overwrite just the byte you wanted to change, and then -write that back.
  • -
  • In any display mode, avoid using memcopy to place things into VRAM. -It's written to be byte oriented, and only does 32-bit transfers under select -conditions. The rest of the time it'll copy one byte at a time and you'll get -either garbage or nothing at all.
  • -
-

Object Attribute Memory (OAM)

-
    -
  • Address Span: 0x700_0000 to 0x700_03FF (1k)
  • -
-

The Object Attribute Memory has a 32-bit bus and no default wait, but suffers -from the "you might have to wait if the display controller is looking at it" -rule. You cannot write individual bytes to OAM at all, but that's not really a -problem because all the fields of the data types within OAM are either i16 or -u16 anyway.

-

Object attribute memory is the wildest yet: it conceptually contains two types -of things, but they're interlaced with each other all the way through.

-

Now, GBATEK and -CowByte -doesn't quite give names to the two data types here. -TONC calls them -OBJ_ATTR and OBJ_AFFINE, but we'll be giving them names fitting with the -Rust naming convention. Just know that if you try to talk about it with others -they might not be using the same names. In Rust terms their layout would look -like this:

-

-# #![allow(unused_variables)]
-#fn main() {
-#[repr(C)]
-pub struct ObjectAttributes {
-  attr0: u16,
-  attr1: u16,
-  attr2: u16,
-  filler: i16,
-}
-
-#[repr(C)]
-pub struct AffineMatrix {
-  filler0: [u16; 3],
-  pa: i16,
-  filler1: [u16; 3],
-  pb: i16,
-  filler2: [u16; 3],
-  pc: i16,
-  filler3: [u16; 3],
-  pd: i16,
-}
-#}
-

(Note: the #[repr(C)] part just means that Rust must lay out the data exactly -in the order we specify, which otherwise it is not required to do).

-

So, we've got 1024 bytes in OAM and each ObjectAttributes value is 8 bytes, so -naturally we can support up to 128 objects.

-

At the same time, we've got 1024 bytes in OAM and each AffineMatrix is 32 -bytes, so we can have 32 of them.

-

But, as I said, these things are all interlaced with each other. See how -there's "filler" fields in each struct? If we imagine the OAM as being just an -array of one type or the other, indexes 0/1/2/3 of the ObjectAttributes array -would line up with index 0 of the AffineMatrix array. It's kinda weird, but -that's just how it works. When we setup functions to read and write these values -we'll have to be careful with how we do it. We probably won't want to use -those representations above, at least not with the AffineMatrix type, because -they're quite wasteful if you want to store just object attributes or just -affine matrices.

-

Game Pak ROM / Flash ROM (ROM)

-
    -
  • Address Span (Wait State 0): 0x800_0000 to 0x9FF_FFFF
  • -
  • Address Span (Wait State 1): 0xA00_0000 to 0xBFF_FFFF
  • -
  • Address Span (Wait State 2): 0xC00_0000 to 0xDFF_FFFF
  • -
-

The game's ROM data is a single set of data that's up to 32 megabytes in size. -However, that data is mirrored to three different locations in the address -space. Depending on which part of the address space you use, it can affect the -memory timings involved.

-

TODO: describe WAITCNT here, we won't get a better chance at it.

-

TODO: discuss THUMB vs ARM code and why THUMB is so much faster (because ROM is a 16-bit bus)

-

Save RAM (SRAM)

-
    -
  • Address Span: 0xE00_0000 to 0xE00FFFF (64k)
  • -
-

The actual amount of SRAM available depends on your game pak, and the 64k figure -is simply the maximum possible. A particular game pak might have less, and an -emulator will likely let you have all 64k if you want.

-

As with other portions of the address space, SRAM has some number of wait cycles -per use. As with ROM, you can change the wait cycle settings via the WAITCNT -register if the defaults don't work well for your game pak. See the ROM section -for full details of how the WAITCNT register works.

-

The game pak SRAM also has only an 8-bit bus, so have fun with that.

-

The GBA Direct Memory Access (DMA) unit cannot access SRAM.

-

Also, you should not write to SRAM with code executing from -ROM. Instead, you -should move the code to WRAM and execute the save code from there. We'll cover -how to handle that eventually.

-

Video

-

GBA Video starts with an IO register called the "Display Control Register", and -then spirals out from there. You generally have to use Palette RAM (PALRAM), -Video RAM (VRAM), Object Attribute Memory (OAM), as well as any number of other -IO registers.

-

They all have to work together just right, and there's a lot going on when you -first try doing it, so try to take it very slowly as you're learning each step.

-

RBG15 Color

-

TODO

-

Non-Video

-

Besides video effects the GBA still has an okay amount of stuff going on.

-

Obviously you'll want to know how to read the user's button inputs. That can -almost go without saying, except that I said it.

-

Each other part can be handled in about any order you like.

-

Using interrupts is perhaps one of the hardest things for us as Rust programmers -due to quirks in our compilation process. Our code all gets compiled to 16-bit -THUMB instructions, and we don't have a way to mark a function to be compiled -using 32-bit ASM instructions instead. However, an interrupt handler must be -written in 32-bit ASM instructions for it to work. That means that we have to -write our interrupt handler in 32-bit ASM by hand. We'll do it, but I don't -think we'll be too happy about it.

-

The Link Cable related stuff is also probably a little harder to test than -anything else. Just because link cable emulation isn't always the best, and or -you need two GBAs with two flash carts and the cable for hardware testing. -Still, we'll try to go over it eventually.

-

Buttons

-

It's all well and good to just show a picture, even to show an animation, but if -we want a game we have to let the user interact with something.

-

Key Input Register

-
    -
  • KEYINPUT, 0x400_0130, u16, read only
  • -
-

This little u16 stores the status of all the buttons on the GBA, all at -once. There's only 10 of them, and we have 16 bits to work with, so that sounds -easy. However, there's a bit of a catch. The register follows a "low-active" -convention, where pressing a button clears that bit until it's released.

-

-# #![allow(unused_variables)]
-#fn main() {
-const NO_BUTTONS_PRESSED: u16 = 0b0000_0011_1111_1111;
-#}
-

The buttons are, going up in order from the 0th bit:

-
    -
  • A
  • -
  • B
  • -
  • Select
  • -
  • Start
  • -
  • Right
  • -
  • Left
  • -
  • Up
  • -
  • Down
  • -
  • R
  • -
  • L
  • -
-

Bits above that are not used. However, since the left and right directions, as -well as the up and down directions, can never be pressed at the same time, the -KEYINPUT register should never read as zero. Of course, the register might -read as zero if someone is using an emulator that allows for such inputs, so I -wouldn't go so far as to make it be NonZeroU16 or anything like that.

-

When programming, we usually are thinking of what buttons we want to have be -pressed instead of buttons we want to have not be pressed. This means that we -need an inversion to happen somewhere along the line. The easiest moment of -inversion is immediately as you read in from the register and wrap the value up -in a newtype.

-

-# #![allow(unused_variables)]
-#fn main() {
-pub fn read_key_input() -> KeyInput {
-  KeyInput(KEYINPUT.read() ^ 0b0000_0011_1111_1111)
-}
-#}
-

Now the KeyInput you get can be checked for what buttons are pressed by checking -for a set bit like you'd do anywhere else.

-

-# #![allow(unused_variables)]
-#fn main() {
-impl KeyInput {
-  pub fn a_pressed(self) -> bool {
-    (self.0 & A_BIT) > 0
-  }
-}
-#}
-

Note that the current KEYINPUT value changes in real time as the user presses -or releases the buttons. To account for this, it's best to read the value just -once per game frame and then use that single value as if it was the input across -the whole frame. If you've worked with polling input before that should sound -totally normal. If not, just remember to call read_key_input once per frame -and then use that KeyInput value across the whole frame.

-

Detecting New Presses

-

The keypad only tells you what's currently pressed, but if you want to check -what's newly pressed it's not too much harder.

-

All that you do is store the last frame's keys and compare them to the current -keys with an XOR. In the gba crate it's called KeyInput::difference. Once -you've got the difference between last frame and this frame, you know what -changes happened.

-
    -
  • If something is in the difference and not pressed in the last frame, that -means it was newly pressed.
  • -
  • If something is in the difference and pressed in the last frame that means -it was newly released.
  • -
  • If something is not in the difference then there's no change between last -frame and this frame.
  • -
-

Key Interrupt Control

-
    -
  • KEYCNT, 0x400_0132, u16, read/write
  • -
-

This lets you control what keys will trigger a keypad interrupt. Of course, for -the actual interrupt to fire you also need to set the IME and IE registers -properly. See the Interrupts section for details there.

-

The main thing to know about this register is that the keys are in the exact -same order as the key input order. However, with this register they use a -high-active convention instead (eg: the bit is active when the button should be -pressed as part of the interrupt).

-

In addition to simply having the bits for the buttons, bit 14 is a flag for -enabling keypad interrupts (in addition to the flag in the IE register), and -bit 15 decides how having more than one button works. If bit 15 is disabled, -it's an OR combination (eg: "press any key to continue"). If bit 15 is enabled -it's an AND combination (eg: "press A+B+Start+Select to reset").

-

Timers

-

Direct Memory Access

-

The GBA has four Direct Memory Access (DMA) units that can be utilized. They're -mostly the same in terms of overall operation, but each unit has special rules -that make it better suited to a particular task.

-

Please Note: TONC and GBATEK have slightly different concepts of how a DMA -unit's registers should be viewed. I've chosen to go by what GBATEK uses.

-

General DMA

-

A single DMA unit is controlled through four different IO Registers.

-
    -
  • Source: (DMAxSAD, read only) A *const pointer that the DMA reads from.
  • -
  • Destination: (DMAxDAD, read only) A *mut pointer that the DMA writes -to.
  • -
  • Count: (DMAxCNT_L, read only) How many transfers to perform.
  • -
  • Control: (DMAxCNT_H, read/write) A register full of bit-flags that -controls all sorts of details.
  • -
-

Here, the x is replaced with 0 through 3 when utilizing whichever particular -DMA unit.

-

Source Address

-

This is either a u32 or u16 address depending on the unit's assigned -transfer mode (see Control). The address MUST be aligned.

-

With DMA0 the source must be internal memory. With other DMA units the source -can be any non-SRAM location.

-

Destination Address

-

As with the Source, this is either a u32 or u16 address depending on the -unit's assigned transfer mode (see Control). The address MUST be aligned.

-

With DMA0/1/2 the destination must be internal memory. With DMA3 the destination -can be any non-SRAM memory (allowing writes into Game Pak ROM / FlashROM, -assuming that your Game Pak hardware supports that).

-

Count

-

This is a u16 that says how many transfers (u16 or u32) to make.

-

DMA0/1/2 will only actually accept a 14-bit value, while DMA3 will accept a full -16-bit value. A value of 0 instead acts as if you'd used the maximum value for -the DMA in question. Put another way, DMA0/1/2 transfer 1 through 0x4000 -words, with 0 as the 0x4000 value, and DMA3 transfers 1 through 0x1_0000 -words, with 0 as the 0x1_0000 value.

-

The maximum value isn't a very harsh limit. Even in just u16 mode, 0x4000 -transfers is 32k, which would for example be all 32k of IWRAM (including your -own user stack). If you for some reason do need to transfer more than a single -DMA use can move around at once then you can just setup the DMA a second time -and keep going.

-

Control

-

This u16 bit-flag field is where things get wild.

-
    -
  • Bits 0-4 do nothing
  • -
  • Bit 5-6 control how the destination address changes per transfer: -
      -
    • 0: Offset +1
    • -
    • 1: Offset -1
    • -
    • 2: No Change
    • -
    • 3: Offset +1 and reload when a Repeat starts (below)
    • -
    -
  • -
  • Bit 7-8 similarly control how the source address changes per transfer: -
      -
    • 0: Offset +1
    • -
    • 1: Offset -1
    • -
    • 2: No Change
    • -
    • 3: Prohibited
    • -
    -
  • -
  • Bit 9: enables Repeat mode.
  • -
  • Bit 10: Transfer u16 (false) or u32 (true) data.
  • -
  • Bit 11: "Game Pak DRQ" flag. GBATEK says that this is only allowed for DMA3, -and also your Game Pak hardware must be equipped to use DRQ mode. I don't even -know what DRQ mode is all about, and GBATEK doesn't say much either. If DRQ is -set then you must not set the Repeat bit as well. The gba crate simply -doesn't bother to expose this flag to users.
  • -
  • Bit 12-13: DMA Start: -
      -
    • 0: "Immediate", which is 2 cycles after requested.
    • -
    • 1: VBlank
    • -
    • 2: HBlank
    • -
    • 3: Special, depending on what DMA unit is involved: -
        -
      • DMA0: Prohibited.
      • -
      • DMA1/2: Sound FIFO (see the Sound section)
      • -
      • DMA3: Video Capture, intended for use with the Repeat flag, performs a -transfer per scanline (similar to HBlank) starting at VCOUNT 2 and -stopping at VCOUNT 162. Intended for copying things from ROM or camera -into VRAM.
      • -
      -
    • -
    -
  • -
  • Bit 14: Interrupt upon DMA complete.
  • -
  • Bit 15: Enable this DMA unit.
  • -
-

DMA Life Cycle

-

The general technique for using a DMA unit involves first setting the relevent -source, destination, and count registers, then setting the appropriate control -register value with the Enable bit set.

-

Once the Enable flag is set the appropriate DMA unit will trigger at the -assigned time (Bit 12-13). The CPU's operation is halted while any DMA unit is -active, until the DMA completes its task. If more than one DMA unit is supposed -to be active at once, then the DMA unit with the lower number will activate and -complete before any others.

-

When the DMA triggers via Enable, the Source, Destination, and Count -values are copied from the GBA's registers into the DMA unit's internal -registers. Changes to the DMA unit's internal copy of the data don't affect the -values in the GBA registers. Another Enable will read the same values as -before.

-

If DMA is triggered via having Repeat active then only the Count is copied -in to the DMA unit registers. The Source and Destination are unaffected -during a Repeat. The exception to this is if the destination address control -value (Bits 5-6) are set to 3 (0b11), in which case a Repeat will also -re-copy the Destination as well as the Count.

-

Once a DMA operation completes, the Enable flag of its Control register will -automatically be disabled, unless the Repeat flag is on, in which case the -Enable flag is left active. You will have to manually disable it if you don't -want the DMA to kick in again over and over at the specified starting time.

-

DMA Limitations

-

The DMA units cannot access SRAM at all.

-

If you're using HBlank to access any part of the memory that the display -controller utilizes (OAM, PALRAM, VRAM), you need to have enabled the -"HBlank Interval Free" bit in the Display Control Register (DISPCNT).

-

Whenever DMA is active the CPU is not active, which means that -Interrupts will not fire while DMA is happening. This can -cause any number of hard to track down bugs. Try to limit your use of the DMA -units if you can.

-

Sound

-

Interrupts

-

Link Cable

-

Game Pak

-

Examples

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/searcher.js b/docs/searcher.js deleted file mode 100644 index 7fd97d4..0000000 --- a/docs/searcher.js +++ /dev/null @@ -1,477 +0,0 @@ -"use strict"; -window.search = window.search || {}; -(function search(search) { - // Search functionality - // - // You can use !hasFocus() to prevent keyhandling in your key - // event handlers while the user is typing their search. - - if (!Mark || !elasticlunr) { - return; - } - - //IE 11 Compatibility from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith - if (!String.prototype.startsWith) { - String.prototype.startsWith = function(search, pos) { - return this.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search; - }; - } - - var search_wrap = document.getElementById('search-wrapper'), - searchbar = document.getElementById('searchbar'), - searchbar_outer = document.getElementById('searchbar-outer'), - searchresults = document.getElementById('searchresults'), - searchresults_outer = document.getElementById('searchresults-outer'), - searchresults_header = document.getElementById('searchresults-header'), - searchicon = document.getElementById('search-toggle'), - content = document.getElementById('content'), - - searchindex = null, - doc_urls = [], - results_options = { - teaser_word_count: 30, - limit_results: 30, - }, - search_options = { - bool: "AND", - expand: true, - fields: { - title: {boost: 1}, - body: {boost: 1}, - breadcrumbs: {boost: 0} - } - }, - mark_exclude = [], - marker = new Mark(content), - current_searchterm = "", - URL_SEARCH_PARAM = 'search', - URL_MARK_PARAM = 'highlight', - teaser_count = 0, - - SEARCH_HOTKEY_KEYCODE = 83, - ESCAPE_KEYCODE = 27, - DOWN_KEYCODE = 40, - UP_KEYCODE = 38, - SELECT_KEYCODE = 13; - - function hasFocus() { - return searchbar === document.activeElement; - } - - function removeChildren(elem) { - while (elem.firstChild) { - elem.removeChild(elem.firstChild); - } - } - - // Helper to parse a url into its building blocks. - function parseURL(url) { - var a = document.createElement('a'); - a.href = url; - return { - source: url, - protocol: a.protocol.replace(':',''), - host: a.hostname, - port: a.port, - params: (function(){ - var ret = {}; - var seg = a.search.replace(/^\?/,'').split('&'); - var len = seg.length, i = 0, s; - for (;i': '>', - '"': '"', - "'": ''' - }; - var repl = function(c) { return MAP[c]; }; - return function(s) { - return s.replace(/[&<>'"]/g, repl); - }; - })(); - - function formatSearchMetric(count, searchterm) { - if (count == 1) { - return count + " search result for '" + searchterm + "':"; - } else if (count == 0) { - return "No search results for '" + searchterm + "'."; - } else { - return count + " search results for '" + searchterm + "':"; - } - } - - function formatSearchResult(result, searchterms) { - var teaser = makeTeaser(escapeHTML(result.doc.body), searchterms); - teaser_count++; - - // The ?URL_MARK_PARAM= parameter belongs inbetween the page and the #heading-anchor - var url = doc_urls[result.ref].split("#"); - if (url.length == 1) { // no anchor found - url.push(""); - } - - return '' + result.doc.breadcrumbs + '' - + '' - + teaser + ''; - } - - function makeTeaser(body, searchterms) { - // The strategy is as follows: - // First, assign a value to each word in the document: - // Words that correspond to search terms (stemmer aware): 40 - // Normal words: 2 - // First word in a sentence: 8 - // Then use a sliding window with a constant number of words and count the - // sum of the values of the words within the window. Then use the window that got the - // maximum sum. If there are multiple maximas, then get the last one. - // Enclose the terms in . - var stemmed_searchterms = searchterms.map(function(w) { - return elasticlunr.stemmer(w.toLowerCase()); - }); - var searchterm_weight = 40; - var weighted = []; // contains elements of ["word", weight, index_in_document] - // split in sentences, then words - var sentences = body.toLowerCase().split('. '); - var index = 0; - var value = 0; - var searchterm_found = false; - for (var sentenceindex in sentences) { - var words = sentences[sentenceindex].split(' '); - value = 8; - for (var wordindex in words) { - var word = words[wordindex]; - if (word.length > 0) { - for (var searchtermindex in stemmed_searchterms) { - if (elasticlunr.stemmer(word).startsWith(stemmed_searchterms[searchtermindex])) { - value = searchterm_weight; - searchterm_found = true; - } - }; - weighted.push([word, value, index]); - value = 2; - } - index += word.length; - index += 1; // ' ' or '.' if last word in sentence - }; - index += 1; // because we split at a two-char boundary '. ' - }; - - if (weighted.length == 0) { - return body; - } - - var window_weight = []; - var window_size = Math.min(weighted.length, results_options.teaser_word_count); - - var cur_sum = 0; - for (var wordindex = 0; wordindex < window_size; wordindex++) { - cur_sum += weighted[wordindex][1]; - }; - window_weight.push(cur_sum); - for (var wordindex = 0; wordindex < weighted.length - window_size; wordindex++) { - cur_sum -= weighted[wordindex][1]; - cur_sum += weighted[wordindex + window_size][1]; - window_weight.push(cur_sum); - }; - - if (searchterm_found) { - var max_sum = 0; - var max_sum_window_index = 0; - // backwards - for (var i = window_weight.length - 1; i >= 0; i--) { - if (window_weight[i] > max_sum) { - max_sum = window_weight[i]; - max_sum_window_index = i; - } - }; - } else { - max_sum_window_index = 0; - } - - // add around searchterms - var teaser_split = []; - var index = weighted[max_sum_window_index][2]; - for (var i = max_sum_window_index; i < max_sum_window_index+window_size; i++) { - var word = weighted[i]; - if (index < word[2]) { - // missing text from index to start of `word` - teaser_split.push(body.substring(index, word[2])); - index = word[2]; - } - if (word[1] == searchterm_weight) { - teaser_split.push("") - } - index = word[2] + word[0].length; - teaser_split.push(body.substring(word[2], index)); - if (word[1] == searchterm_weight) { - teaser_split.push("") - } - }; - - return teaser_split.join(''); - } - - function init(config) { - results_options = config.results_options; - search_options = config.search_options; - searchbar_outer = config.searchbar_outer; - doc_urls = config.doc_urls; - searchindex = elasticlunr.Index.load(config.index); - - // Set up events - searchicon.addEventListener('click', function(e) { searchIconClickHandler(); }, false); - searchbar.addEventListener('keyup', function(e) { searchbarKeyUpHandler(); }, false); - document.addEventListener('keydown', function(e) { globalKeyHandler(e); }, false); - // If the user uses the browser buttons, do the same as if a reload happened - window.onpopstate = function(e) { doSearchOrMarkFromUrl(); }; - // Suppress "submit" events so the page doesn't reload when the user presses Enter - document.addEventListener('submit', function(e) { e.preventDefault(); }, false); - - // If reloaded, do the search or mark again, depending on the current url parameters - doSearchOrMarkFromUrl(); - } - - function unfocusSearchbar() { - // hacky, but just focusing a div only works once - var tmp = document.createElement('input'); - tmp.setAttribute('style', 'position: absolute; opacity: 0;'); - searchicon.appendChild(tmp); - tmp.focus(); - tmp.remove(); - } - - // On reload or browser history backwards/forwards events, parse the url and do search or mark - function doSearchOrMarkFromUrl() { - // Check current URL for search request - var url = parseURL(window.location.href); - if (url.params.hasOwnProperty(URL_SEARCH_PARAM) - && url.params[URL_SEARCH_PARAM] != "") { - showSearch(true); - searchbar.value = decodeURIComponent( - (url.params[URL_SEARCH_PARAM]+'').replace(/\+/g, '%20')); - searchbarKeyUpHandler(); // -> doSearch() - } else { - showSearch(false); - } - - if (url.params.hasOwnProperty(URL_MARK_PARAM)) { - var words = url.params[URL_MARK_PARAM].split(' '); - marker.mark(words, { - exclude: mark_exclude - }); - - var markers = document.querySelectorAll("mark"); - function hide() { - for (var i = 0; i < markers.length; i++) { - markers[i].classList.add("fade-out"); - window.setTimeout(function(e) { marker.unmark(); }, 300); - } - } - for (var i = 0; i < markers.length; i++) { - markers[i].addEventListener('click', hide); - } - } - } - - // Eventhandler for keyevents on `document` - function globalKeyHandler(e) { - if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey || e.target.type === 'textarea') { return; } - - if (e.keyCode === ESCAPE_KEYCODE) { - e.preventDefault(); - searchbar.classList.remove("active"); - setSearchUrlParameters("", - (searchbar.value.trim() !== "") ? "push" : "replace"); - if (hasFocus()) { - unfocusSearchbar(); - } - showSearch(false); - marker.unmark(); - } else if (!hasFocus() && e.keyCode === SEARCH_HOTKEY_KEYCODE) { - e.preventDefault(); - showSearch(true); - window.scrollTo(0, 0); - searchbar.select(); - } else if (hasFocus() && e.keyCode === DOWN_KEYCODE) { - e.preventDefault(); - unfocusSearchbar(); - searchresults.firstElementChild.classList.add("focus"); - } else if (!hasFocus() && (e.keyCode === DOWN_KEYCODE - || e.keyCode === UP_KEYCODE - || e.keyCode === SELECT_KEYCODE)) { - // not `:focus` because browser does annoying scrolling - var focused = searchresults.querySelector("li.focus"); - if (!focused) return; - e.preventDefault(); - if (e.keyCode === DOWN_KEYCODE) { - var next = focused.nextElementSibling; - if (next) { - focused.classList.remove("focus"); - next.classList.add("focus"); - } - } else if (e.keyCode === UP_KEYCODE) { - focused.classList.remove("focus"); - var prev = focused.previousElementSibling; - if (prev) { - prev.classList.add("focus"); - } else { - searchbar.select(); - } - } else { // SELECT_KEYCODE - window.location.assign(focused.querySelector('a')); - } - } - } - - function showSearch(yes) { - if (yes) { - search_wrap.classList.remove('hidden'); - searchicon.setAttribute('aria-expanded', 'true'); - } else { - search_wrap.classList.add('hidden'); - searchicon.setAttribute('aria-expanded', 'false'); - var results = searchresults.children; - for (var i = 0; i < results.length; i++) { - results[i].classList.remove("focus"); - } - } - } - - function showResults(yes) { - if (yes) { - searchresults_outer.classList.remove('hidden'); - } else { - searchresults_outer.classList.add('hidden'); - } - } - - // Eventhandler for search icon - function searchIconClickHandler() { - if (search_wrap.classList.contains('hidden')) { - showSearch(true); - window.scrollTo(0, 0); - searchbar.select(); - } else { - showSearch(false); - } - } - - // Eventhandler for keyevents while the searchbar is focused - function searchbarKeyUpHandler() { - var searchterm = searchbar.value.trim(); - if (searchterm != "") { - searchbar.classList.add("active"); - doSearch(searchterm); - } else { - searchbar.classList.remove("active"); - showResults(false); - removeChildren(searchresults); - } - - setSearchUrlParameters(searchterm, "push_if_new_search_else_replace"); - - // Remove marks - marker.unmark(); - } - - // Update current url with ?URL_SEARCH_PARAM= parameter, remove ?URL_MARK_PARAM and #heading-anchor . - // `action` can be one of "push", "replace", "push_if_new_search_else_replace" - // and replaces or pushes a new browser history item. - // "push_if_new_search_else_replace" pushes if there is no `?URL_SEARCH_PARAM=abc` yet. - function setSearchUrlParameters(searchterm, action) { - var url = parseURL(window.location.href); - var first_search = ! url.params.hasOwnProperty(URL_SEARCH_PARAM); - if (searchterm != "" || action == "push_if_new_search_else_replace") { - url.params[URL_SEARCH_PARAM] = searchterm; - delete url.params[URL_MARK_PARAM]; - url.hash = ""; - } else { - delete url.params[URL_SEARCH_PARAM]; - } - // A new search will also add a new history item, so the user can go back - // to the page prior to searching. A updated search term will only replace - // the url. - if (action == "push" || (action == "push_if_new_search_else_replace" && first_search) ) { - history.pushState({}, document.title, renderURL(url)); - } else if (action == "replace" || (action == "push_if_new_search_else_replace" && !first_search) ) { - history.replaceState({}, document.title, renderURL(url)); - } - } - - function doSearch(searchterm) { - - // Don't search the same twice - if (current_searchterm == searchterm) { return; } - else { current_searchterm = searchterm; } - - if (searchindex == null) { return; } - - // Do the actual search - var results = searchindex.search(searchterm, search_options); - var resultcount = Math.min(results.length, results_options.limit_results); - - // Display search metrics - searchresults_header.innerText = formatSearchMetric(resultcount, searchterm); - - // Clear and insert results - var searchterms = searchterm.split(' '); - removeChildren(searchresults); - for(var i = 0; i < resultcount ; i++){ - var resultElem = document.createElement('li'); - resultElem.innerHTML = formatSearchResult(results[i], searchterms); - searchresults.appendChild(resultElem); - } - - // Display results - showResults(true); - } - - fetch(path_to_root + 'searchindex.json') - .then(response => response.json()) - .then(json => init(json)) - .catch(error => { // Try to load searchindex.js if fetch failed - var script = document.createElement('script'); - script.src = path_to_root + 'searchindex.js'; - script.onload = () => init(window.search); - document.head.appendChild(script); - }); - - // Exported functions - search.hasFocus = hasFocus; -})(window.search); diff --git a/docs/searchindex.js b/docs/searchindex.js deleted file mode 100644 index 5ba5b31..0000000 --- a/docs/searchindex.js +++ /dev/null @@ -1 +0,0 @@ -window.search = {"doc_urls":["00-introduction/00-index.html#introduction","00-introduction/00-index.html#feedback","00-introduction/01-requirements.html#reader-requirements","00-introduction/02-goals_and_style.html#book-goals-and-style","00-introduction/03-development-setup.html#development-setup","00-introduction/03-development-setup.html#per-system-setup","00-introduction/03-development-setup.html#per-project-setup","00-introduction/03-development-setup.html#compiling","00-introduction/04-hello-magic.html#hello-magic","00-introduction/05-help_and_resources.html#help-and-resources","00-introduction/05-help_and_resources.html#help","00-introduction/05-help_and_resources.html#emulators","00-introduction/05-help_and_resources.html#information-resources","00-introduction/05-help_and_resources.html#non-rust-gba-community","01-quirks/00-index.html#quirks","01-quirks/01-no_std.html#no-std","01-quirks/01-no_std.html#bare-metal","01-quirks/01-no_std.html#no-standard-library","01-quirks/01-no_std.html#bare-metal-panic","01-quirks/01-no_std.html#llvm-intrinsics","01-quirks/02-fixed_only.html#fixed-only","01-quirks/02-fixed_only.html#representing-a-fixed-point-value","01-quirks/02-fixed_only.html#a-struct-for-fixed-point","01-quirks/02-fixed_only.html#constructing-a-fixed-point-value","01-quirks/02-fixed_only.html#casting-base-values","01-quirks/02-fixed_only.html#adjusting-fractional-part","01-quirks/02-fixed_only.html#addition-subtraction-shifting-negative-comparisons","01-quirks/02-fixed_only.html#multiplication","01-quirks/02-fixed_only.html#division","01-quirks/02-fixed_only.html#trigonometry","01-quirks/02-fixed_only.html#just-using-a-crate","01-quirks/03-volatile_destination.html#volatile-destination","01-quirks/03-volatile_destination.html#volatile-memory","01-quirks/03-volatile_destination.html#constructing-the-voladdress-type","01-quirks/03-volatile_destination.html#constructing-a-voladdress-value","01-quirks/03-volatile_destination.html#using-a-voladdress-value","01-quirks/03-volatile_destination.html#voladdress-iteration","01-quirks/03-volatile_destination.html#voladdressblock","01-quirks/03-volatile_destination.html#docs","01-quirks/03-volatile_destination.html#volatile-asm","01-quirks/04-newtype.html#newtype","01-quirks/04-newtype.html#newtype-basics","01-quirks/04-newtype.html#making-it-a-macro","01-quirks/04-newtype.html#upgrade-that-macro","01-quirks/05-const_asserts.html#constant-assertions","01-quirks/05-const_asserts.html#how-we-const-assert","01-quirks/05-const_asserts.html#asserting-something","02-concepts/00-index.html#broad-concepts","02-concepts/00-index.html#bus-size","02-concepts/00-index.html#minimum-write-size","02-concepts/00-index.html#volatile-or-not","02-concepts/01-cpu.html#cpu","02-concepts/02-bios.html#bios","02-concepts/02-bios.html#inline-asm","02-concepts/02-bios.html#assembly","02-concepts/02-bios.html#outputs","02-concepts/02-bios.html#inputs","02-concepts/02-bios.html#clobbers","02-concepts/02-bios.html#options","02-concepts/02-bios.html#bios-asm","02-concepts/02-bios.html#example-bios-function-division","02-concepts/02-bios.html#specific-bios-functions","02-concepts/03-wram.html#work-ram","02-concepts/03-wram.html#external-work-ram-ewram","02-concepts/03-wram.html#internal-work-ram-iwram","02-concepts/04-io-registers.html#io-registers","02-concepts/05-palram.html#palette-ram-palram","02-concepts/05-palram.html#transparency","02-concepts/06-vram.html#video-ram-vram","02-concepts/07-oam.html#object-attribute-memory-oam","02-concepts/08-rom.html#game-pak-rom--flash-rom-rom","02-concepts/09-sram.html#save-ram-sram","03-video/00-index.html#video","03-video/01-rgb15.html#rbg15-color","03-video/TODO.html#todo","04-non-video/00-index.html#non-video","04-non-video/01-buttons.html#buttons","04-non-video/01-buttons.html#key-input-register","04-non-video/01-buttons.html#detecting-new-presses","04-non-video/01-buttons.html#key-interrupt-control","04-non-video/02-timers.html#timers","04-non-video/03-dma.html#direct-memory-access","04-non-video/03-dma.html#general-dma","04-non-video/03-dma.html#source-address","04-non-video/03-dma.html#destination-address","04-non-video/03-dma.html#count","04-non-video/03-dma.html#control","04-non-video/03-dma.html#dma-life-cycle","04-non-video/03-dma.html#dma-limitations","04-non-video/04-sound.html#sound","04-non-video/05-interrupts.html#interrupts","04-non-video/06-link_cable.html#link-cable","04-non-video/07-game_pak.html#game-pak","05-examples/00-index.html#examples"],"index":{"documentStore":{"docInfo":{"0":{"body":35,"breadcrumbs":1,"title":1},"1":{"body":44,"breadcrumbs":1,"title":1},"10":{"body":32,"breadcrumbs":2,"title":1},"11":{"body":46,"breadcrumbs":2,"title":1},"12":{"body":205,"breadcrumbs":3,"title":2},"13":{"body":27,"breadcrumbs":5,"title":4},"14":{"body":27,"breadcrumbs":1,"title":1},"15":{"body":43,"breadcrumbs":2,"title":1},"16":{"body":97,"breadcrumbs":3,"title":2},"17":{"body":274,"breadcrumbs":3,"title":2},"18":{"body":114,"breadcrumbs":4,"title":3},"19":{"body":113,"breadcrumbs":3,"title":2},"2":{"body":102,"breadcrumbs":3,"title":2},"20":{"body":135,"breadcrumbs":2,"title":1},"21":{"body":225,"breadcrumbs":5,"title":4},"22":{"body":174,"breadcrumbs":4,"title":3},"23":{"body":166,"breadcrumbs":5,"title":4},"24":{"body":132,"breadcrumbs":4,"title":3},"25":{"body":183,"breadcrumbs":4,"title":3},"26":{"body":313,"breadcrumbs":6,"title":5},"27":{"body":265,"breadcrumbs":2,"title":1},"28":{"body":187,"breadcrumbs":2,"title":1},"29":{"body":5,"breadcrumbs":2,"title":1},"3":{"body":109,"breadcrumbs":4,"title":3},"30":{"body":42,"breadcrumbs":3,"title":2},"31":{"body":6,"breadcrumbs":3,"title":2},"32":{"body":122,"breadcrumbs":3,"title":2},"33":{"body":185,"breadcrumbs":4,"title":3},"34":{"body":97,"breadcrumbs":4,"title":3},"35":{"body":87,"breadcrumbs":4,"title":3},"36":{"body":89,"breadcrumbs":3,"title":2},"37":{"body":140,"breadcrumbs":2,"title":1},"38":{"body":12,"breadcrumbs":2,"title":1},"39":{"body":140,"breadcrumbs":3,"title":2},"4":{"body":24,"breadcrumbs":3,"title":2},"40":{"body":93,"breadcrumbs":2,"title":1},"41":{"body":84,"breadcrumbs":3,"title":2},"42":{"body":165,"breadcrumbs":3,"title":2},"43":{"body":240,"breadcrumbs":3,"title":2},"44":{"body":63,"breadcrumbs":3,"title":2},"45":{"body":164,"breadcrumbs":3,"title":2},"46":{"body":90,"breadcrumbs":3,"title":2},"47":{"body":119,"breadcrumbs":2,"title":2},"48":{"body":2,"breadcrumbs":2,"title":2},"49":{"body":8,"breadcrumbs":3,"title":3},"5":{"body":148,"breadcrumbs":4,"title":3},"50":{"body":9,"breadcrumbs":1,"title":1},"51":{"body":0,"breadcrumbs":2,"title":1},"52":{"body":165,"breadcrumbs":2,"title":1},"53":{"body":224,"breadcrumbs":3,"title":2},"54":{"body":72,"breadcrumbs":2,"title":1},"55":{"body":79,"breadcrumbs":2,"title":1},"56":{"body":42,"breadcrumbs":2,"title":1},"57":{"body":41,"breadcrumbs":2,"title":1},"58":{"body":29,"breadcrumbs":2,"title":1},"59":{"body":57,"breadcrumbs":3,"title":2},"6":{"body":80,"breadcrumbs":4,"title":3},"60":{"body":125,"breadcrumbs":5,"title":4},"61":{"body":47,"breadcrumbs":4,"title":3},"62":{"body":0,"breadcrumbs":3,"title":2},"63":{"body":80,"breadcrumbs":5,"title":4},"64":{"body":46,"breadcrumbs":5,"title":4},"65":{"body":4,"breadcrumbs":3,"title":2},"66":{"body":176,"breadcrumbs":4,"title":3},"67":{"body":96,"breadcrumbs":2,"title":1},"68":{"body":118,"breadcrumbs":4,"title":3},"69":{"body":210,"breadcrumbs":5,"title":4},"7":{"body":457,"breadcrumbs":2,"title":1},"70":{"body":68,"breadcrumbs":7,"title":6},"71":{"body":86,"breadcrumbs":4,"title":3},"72":{"body":44,"breadcrumbs":1,"title":1},"73":{"body":0,"breadcrumbs":3,"title":2},"74":{"body":0,"breadcrumbs":2,"title":1},"75":{"body":106,"breadcrumbs":2,"title":2},"76":{"body":13,"breadcrumbs":3,"title":1},"77":{"body":184,"breadcrumbs":5,"title":3},"78":{"body":60,"breadcrumbs":5,"title":3},"79":{"body":89,"breadcrumbs":5,"title":3},"8":{"body":182,"breadcrumbs":3,"title":2},"80":{"body":0,"breadcrumbs":3,"title":1},"81":{"body":39,"breadcrumbs":5,"title":3},"82":{"body":50,"breadcrumbs":4,"title":2},"83":{"body":22,"breadcrumbs":4,"title":2},"84":{"body":33,"breadcrumbs":4,"title":2},"85":{"body":83,"breadcrumbs":3,"title":1},"86":{"body":169,"breadcrumbs":3,"title":1},"87":{"body":155,"breadcrumbs":5,"title":3},"88":{"body":47,"breadcrumbs":4,"title":2},"89":{"body":0,"breadcrumbs":3,"title":1},"9":{"body":0,"breadcrumbs":3,"title":2},"90":{"body":0,"breadcrumbs":3,"title":1},"91":{"body":0,"breadcrumbs":4,"title":2},"92":{"body":0,"breadcrumbs":4,"title":2},"93":{"body":0,"breadcrumbs":1,"title":1}},"docs":{"0":{"body":"This is the book for learning how to write GameBoy Advance (GBA) games in Rust. I'm Lokathor , the main author of the book. There's also Ketsuban who provides the technical advisement, reviews the PRs, and keeps my crazy in check. The book is a work in progress, as you can see if you actually try to open many of the pages listed in the Table Of Contents.","breadcrumbs":"Introduction","id":"0","title":"Introduction"},"1":{"body":"It's very often hard to tell when you've explained something properly. In the same way that your brain will read over small misspellings and correct things into the right word, if an explanation for something you already understand accidentally skips over some small detail then your brain can fill in the gaps without you realizing it. Please , if things don't make sense then file an issue about it so I know where things need to improve.","breadcrumbs":"Feedback","id":"1","title":"Feedback"},"10":{"body":"So you're stuck on a problem and the book doesn't say what to do. Where can you find out more? The first place I would suggest is the Rust Community Discord . If it's a general Rust question then you can ask anyone in any channel you feel is appropriate. If it's GBA specific then you can try asking me ( Lokathor ) or Ketsuban in the #gamedev channel.","breadcrumbs":"Introduction » Help","id":"10","title":"Help"},"11":{"body":"You certainly might want to eventually write a game that you can put on a flash cart and play on real hardware, but for most of your development you'll probably want to be using an emulator for testing, because you don't have to fiddle with cables and all that. In terms of emulators, you want to be using mGBA , and you want to be using the 0.7 Beta 1 or later. This update lets you run raw ELF files, which means that you can have full debug symbols available while you're debugging problems.","breadcrumbs":"Introduction » Emulators","id":"11","title":"Emulators"},"12":{"body":"First, if I fail to describe something related to Rust, you can always try checking in The Rust Reference to see if they cover it. You can mostly ignore that big scary red banner at the top, things are a lot better documented than they make it sound. If you need help trying to fiddle your math down as hard as you can, there are resources such as the Bit Twiddling Hacks page. As to GBA related lore, Ketsuban and I didn't magically learn this all from nowhere, we read various technical manuals and guides ourselves and then distilled those works oriented around C and C++ into a book for Rust. We have personally used some or all of the following: GBATEK : This is the resource. It covers not only the GBA, but also the DS and DSi, and also a run down of ARM assembly (32-bit and 16-bit opcodes). The link there is to the 2.9b version on problemkaputt.de (the official home of the document), but if you just google for gbatek the top result is for the 2.5 version on akkit.org , so make sure you're looking at the newest version. Sometimes problemkaputt.de is a little sluggish so I've also mirrored the 2.9b version on my own site as well. GBATEK is rather large, over 2mb of text, so if you're on a phone or similar you might want to save an offline copy to go easy on your data usage. TONC : While GBATEK is basically just a huge tech specification, TONC is an actual guide on how to make sense of the GBA's abilities and organize it into a game. It's written for C of course, but as a Rust programmer you should always be practicing your ability to read C code anyway. It's the programming equivalent of learning Latin because all the old academic books are written in Latin. CowBite : This is more like GBATEK, and it's less complete, but it mixes in a little more friendly explanation of things in between the hardware spec parts. And I haven't had time to look at it myself, The Audio Advance seems to be very good. It explains in depth how you can get audio working on the GBA. Note that the table of contents for each page goes along the top instead of down the side.","breadcrumbs":"Introduction » Information Resources","id":"12","title":"Information Resources"},"13":{"body":"There's also the GBADev.org site, which has a forum and everything. They're coding in C and C++, but you can probably overcome that difference with a little work on your part. I also found a place called GBATemp , which seems to have a more active forum but less of a focus on actual coding.","breadcrumbs":"Introduction » Non-Rust GBA Community","id":"13","title":"Non-Rust GBA Community"},"14":{"body":"The GBA supports a lot of totally normal Rust code exactly like you'd think. However, it also is missing a lot of what you might expect, and sometimes we have to do things in slightly weird ways. We start the book by covering the quirks our code will have, just to avoid too many surprises later.","breadcrumbs":"Quirks","id":"14","title":"Quirks"},"15":{"body":"First up, as you already saw in the hello_magic code, we have to use the #![no_std] outer attribute on our program when we target the GBA. You can find some info about no_std in two official sources: unstable book section embedded book section The unstable book is borderline useless here because it's describing too many things in too many words. The embedded book is much better, but still fairly terse.","breadcrumbs":"Quirks » No Std","id":"15","title":"No Std"},"16":{"body":"The GBA falls under what the Embedded Book calls \"Bare Metal Environments\". Basically, the machine powers on and immediately begins executing some ASM code. Our ASM startup was provided by Ketsuban (check the crt0.s file). We'll go over how it works much later on, for now it's enough to know that it does work, and eventually control passes into Rust code. On the rust code side of things, we determine our starting point with the #[start] attribute on our main function. The main function also has a specific type signature that's different from the usual main that you'd see in Rust. I'd tell you to read the unstable-book entry on #[start] but they literally just tell you to look at the tracking issue for it instead, and that's not very helpful either. Basically it just has to be declared the way it is, even though there's nothing passing in the arguments and there's no place that the return value will go. The compiler won't accept it any other way.","breadcrumbs":"Quirks » Bare Metal","id":"16","title":"Bare Metal"},"17":{"body":"The Embedded Book tells us that we can't use the standard library, but we get access to something called \"libcore\", which sounds kinda funny. What they're talking about is just the core crate , which is called libcore within the rust repository for historical reasons. The core crate is actually still a really big portion of Rust. The standard library doesn't actually hold too much code (relatively speaking), instead it just takes code form other crates and then re-exports it in an organized way. So with just core instead of std , what are we missing? In no particular order: Allocation Clock Network File System The allocation system and all the types that you can use if you have a global allocator are neatly packaged up in the alloc crate. The rest isn't as nicely organized. It's possible to implement a fair portion of the entire standard library within a GBA context and make the rest just panic if you try to use it. However, do you really need all that? Eh... probably not? We don't need a file system, because all of our data is just sitting there in the ROM for us to use. When programming we can organize our const data into modules and such to keep it organized, but once the game is compiled it's just one huge flat address space. TODO: Parasyte says that a FS can be handy even if it's all just ReadOnly, so we'll eventually talk about how you might set up such a thing I guess, since we'll already be talking about replacements for three of the other four things we \"lost\". Maybe we'll make Parasyte write that section. Networking, well, the GBA has a Link Cable you can use to communicate with another GBA, but it's not really like a unix socket with TCP, so the standard Rust networking isn't a very good match. Clock is actually two different things at once. One is the ability to store the time long term, which is a bit of hardware that some gamepaks have in them (eg: pokemon ruby/sapphire/emerald). The GBA itself can't keep time while power is off. However, the second part is just tracking time moment to moment, which the GBA can totally do. We'll see how to access the timers soon enough. Which just leaves us with allocation. Do we need an allocator? Depends on your game. For demos and small games you probably don't need one. For bigger games you'll maybe want to get an allocator going eventually. It's in some sense a crutch, but it's a very useful one. So I promise that at some point we'll cover how to get an allocator going. Either a Rust Global Allocator (if practical), which would allow for a lot of the standard library types to be used \"for free\" once it was set up, or just a custom allocator that's GBA specific if Rust's global allocator style isn't a good fit for the GBA (I honestly haven't looked into it).","breadcrumbs":"Quirks » No Standard Library","id":"17","title":"No Standard Library"},"18":{"body":"If our code panics, we usually want to see that panic message. Unfortunately, without a way to access something like stdout or stderr we've gotta do something a little weirder. If our program is running within the mGBA emulator, version 0.7 or later, we can access a special set of addresses that allow us to send out CString values, which then appear within a message log that you can check. We can capture this behavior by making an MGBADebug type, and then implement core::fmt::Write for that type. Once done, the write! macro will let us target the mGBA debug output channel. When used, it looks like this: #[panic_handler]\nfn panic(info: &core::panic::PanicInfo) -> ! { use core::fmt::Write; use gba::mgba::{MGBADebug, MGBADebugLevel}; if let Some(mut mgba) = MGBADebug::new() { let _ = write!(mgba, \"{}\", info); mgba.send(MGBADebugLevel::Fatal); } loop {}\n} If you want to follow the particulars you can check the MGBADebug source in the gba crate. Basically, there's one address you can use to try and activate the debug output, and if it works you write your message into the \"array\" at another address, and then finally write a send value to a third address. You'll need to have read the volatile section for the details to make sense.","breadcrumbs":"Quirks » Bare Metal Panic","id":"18","title":"Bare Metal Panic"},"19":{"body":"The above code will make your program fail to build in debug mode, saying that __clzsi2 can't be found. This is a special builtin function that LLVM attempts to use when there's no hardware version of an operation it wants to do (in this case, counting the leading zeros). It's not actually necessary in this case, which is why you only need it in debug mode. The higher optimization level of release mode makes LLVM pre-compute more and fold more constants or whatever and then it stops trying to call __clzsi2 . Unfortunately, sometimes a build will fail with a missing intrinsic even in release mode. If LLVM wants core to have that intrinsic then you're in trouble, you'll have to send a PR to the compiler-builtins repository and hope to get it into rust itself. If LLVM wants your code to have the intrinsic then you're in less trouble. You can look up the details and then implement it yourself. It can go anywhere in your program, as long as it has the right ABI and name. In the case of __clzsi2 it takes a usize and returns a usize , so you'd write something like: #[no_mangle]\npub extern \"C\" fn __clzsi2(mut x: usize) -> usize { //\n} And so on for whatever other missing intrinsic.","breadcrumbs":"Quirks » LLVM Intrinsics","id":"19","title":"LLVM Intrinsics"},"2":{"body":"This book naturally assumes that you've already read Rust's core book: The Rust Programming Language Now, I know it sounds silly to say \"if you wanna program Rust on this old video game system you should already know how to program Rust\", but the more people I meet and chat with the more they tell me that they jumped into Rust without reading any or all of the book. You know who you are. Please, read the whole book! In addition to the core book, there's also an expansion book that I will declare to be required reading for this: The Rustonomicon The Rustonomicon is all about trying to demystify unsafe . We'll end up using a fair bit of unsafe code as a natural consequence of doing direct hardware manipulations. Using unsafe is like swinging a sword , you should start slowly, practice carefully, and always pay attention no matter how experienced you think you've become. That said, it's sometimes a necessary tool to get the job done, so you have to break out of the borderline pathological fear of using it that most rust programmers tend to have.","breadcrumbs":"Introduction » Reader Requirements","id":"2","title":"Reader Requirements"},"20":{"body":"In addition to not having much of the standard library available, we don't even have a floating point unit available! We can't do floating point math in hardware! We could still do floating point math as pure software computations if we wanted, but that's a slow, slow thing to do. Are there faster ways? It's the same answer as always: \"Yes, but not without a tradeoff.\" The faster way is to represent fractional values using a system called a Fixed Point Representation . What do we trade away? Numeric range. Floating point math stores bits for base value and for exponent all according to a single well defined standard for how such a complicated thing works. Fixed point math takes a normal integer (either signed or unsigned) and then just \"mentally associates\" it (so to speak) with a fractional value for its \"units\". If you have 3 and it's in units of 1/2, then you have 3/2, or 1.5 using decimal notation. If your number is 256 and it's in units of 1/256th then the value is 1.0 in decimal notation. Floating point math requires dedicated hardware to perform quickly, but it can \"trade\" precision when it needs to represent extremely large or small values. Fixed point math is just integral math, which our GBA is reasonably good at, but because your number is associated with a fixed fraction your results can get out of range very easily.","breadcrumbs":"Quirks » Fixed Only","id":"20","title":"Fixed Only"},"21":{"body":"So we want to associate our numbers with a mental note of what units they're in: PhantomData is a type that tells the compiler \"please remember this extra type info\" when you add it as a field to a struct. It goes away at compile time, so it's perfect for us to use as space for a note to ourselves without causing runtime overhead. The typenum crate is the best way to represent a number within a type in Rust. Since our values on the GBA are always specified as a number of fractional bits to count the number as, we can put typenum types such as U8 or U14 into our PhantomData to keep track of what's going on. Now, those of you who know me, or perhaps just know my reputation, will of course immediately question what happened to the real Lokathor. I do not care for most crates, and I particularly don't care for using a crate in teaching situations. However, typenum has a number of factors on its side that let me suggest it in this situation: It's version 1.10 with a total of 21 versions and nearly 700k downloads, so we can expect that the major troubles have been shaken out and that it will remain fairly stable for quite some time to come. It has no further dependencies that it's going to drag into the compilation. It happens all at compile time, so it's not clogging up our actual game with any nonsense. The (interesting) subject of \"how do you do math inside Rust's trait system?\" is totally separate from the concern that we're trying to focus on here. Therefore, we will consider it acceptable to use this crate. Now the typenum crate defines a whole lot, but we'll focus down to just a single type at the moment: UInt is a type-level unsigned value. It's like u8 or u16 , but while they're types that then have values, each UInt construction statically equates to a specific value. Like how the () type only has one value, which is also called () . In this case, you wrap up UInt around smaller UInt values and a B1 or B0 value to build up the binary number that you want at the type level. In other words, instead of writing let six = 0b110; We write type U6 = UInt, B1>, B0>; Wild, I know. If you look into the typenum crate you can do math and stuff with these type level numbers, and we will a little bit below, but to start off we just need to store one in some PhantomData .","breadcrumbs":"Quirks » Representing A Fixed Point Value","id":"21","title":"Representing A Fixed Point Value"},"22":{"body":"Our actual type for a fixed point value looks like this: use core::marker::PhantomData;\nuse typenum::marker_traits::Unsigned; /// Fixed point `T` value with `F` fractional bits.\n#[derive(Debug, Copy, Clone, Default, PartialEq, Eq, PartialOrd, Ord)]\n#[repr(transparent)]\npub struct Fx { bits: T, _phantom: PhantomData,\n} This says that Fx is a generic type that holds some base number type T and a F type that's marking off how many fractional bits we're using. We only want people giving unsigned type-level values for the PhantomData type, so we use the trait bound F: Unsigned . We use repr(transparent) here to ensure that Fx will always be treated just like the base type in the final program (in terms of bit pattern and ABI). If you go and check, this is basically how the existing general purpose crates for fixed point math represent their numbers. They're a little fancier about it because they have to cover every case, and we only have to cover our GBA case. That's quite a bit to type though. We probably want to make a few type aliases for things to be easier to look at. Unfortunately there's no standard notation for how you write a fixed point type. We also have to limit ourselves to what's valid for use in a Rust type too. I like the fx thing, so we'll use that for signed and then fxu if we need an unsigned value. /// Alias for an `i16` fixed point value with 8 fractional bits.\npub type fx8_8 = Fx; Rust will complain about having non_camel_case_types , and you can shut that warning up by putting an #[allow(non_camel_case_types)] attribute on the type alias directly, or you can use #![allow(non_camel_case_types)] at the very top of the module to shut up that warning for the whole module (which is what I did).","breadcrumbs":"Quirks » A struct For Fixed Point","id":"22","title":"A struct For Fixed Point"},"23":{"body":"So how do we actually make one of these values? Well, we can always just wrap or unwrap any value in our Fx type: impl Fx { /// Uses the provided value directly. pub fn from_raw(r: T) -> Self { Fx { num: r, phantom: PhantomData, } } /// Unwraps the inner value. pub fn into_raw(self) -> T { self.num }\n} I'd like to use the From trait of course, but it was giving me some trouble, i think because of the orphan rule. Oh well. If we want to be particular to the fact that these are supposed to be numbers ... that gets tricky. Rust is actually quite bad at being generic about number types. You can use the num crate, or you can just use a macro and invoke it once per type. Guess what we're gonna do. macro_rules! fixed_point_methods { ($t:ident) => { impl Fx<$t, F> { /// Gives the smallest positive non-zero value. pub fn precision() -> Self { Fx { num: 1, phantom: PhantomData, } } /// Makes a value with the integer part shifted into place. pub fn from_int_part(i: $t) -> Self { Fx { num: i << F::U8, phantom: PhantomData, } } } };\n} fixed_point_methods! {u8}\nfixed_point_methods! {i8}\nfixed_point_methods! {i16}\nfixed_point_methods! {u16}\nfixed_point_methods! {i32}\nfixed_point_methods! {u32} Now you'd think that those can be const , but at the moment you can't have a const function with a bound on any trait other than Sized , so they have to be normal functions. Also, we're doing something a little interesting there with from_int_part . We can take our F type and get its constant value. There's other associated constants if we want it in other types, and also non-const methods if you wanted that for some reason (maybe passing it as a closure function? dunno).","breadcrumbs":"Quirks » Constructing A Fixed Point Value","id":"23","title":"Constructing A Fixed Point Value"},"24":{"body":"Next, once we have a value in one base type we will need to be able to move it into another base type. Unfortunately this means we gotta use the as operator, which requires a concrete source type and a concrete destination type. There's no easy way for us to make it generic here. We could let the user use into_raw , cast, and then do from_raw , but that's error prone because they might change the fractional bit count accidentally. This means that we have to write a function that does the casting while perfectly preserving the fractional bit quantity. If we wrote one function for each conversion it'd be like 30 different possible casts (6 base types that we support, and then 5 possible target types). Instead, we'll write it just once in a way that takes a closure, and let the user pass a closure that does the cast. The compiler should merge it all together quite nicely for us once optimizations kick in. This code goes outside the macro. I want to avoid too much code in the macro if we can, it's a little easier to cope with I think. /// Casts the base type, keeping the fractional bit quantity the same. pub fn cast_inner Z>(self, op: C) -> Fx { Fx { num: op(self.num), phantom: PhantomData, } } It's horrible and ugly, but Rust is just bad at numbers sometimes.","breadcrumbs":"Quirks » Casting Base Values","id":"24","title":"Casting Base Values"},"25":{"body":"In addition to the base value we might want to change our fractional bit quantity. This is actually easier that it sounds, but it also requires us to be tricky with the generics. We can actually use some typenum type level operators here. This code goes inside the macro: we need to be able to use the left shift and right shift, which is easiest when we just use the macro's $t as our type. We could alternately put a similar function outside the macro and be generic on T having the left and right shift operators by using a where clause. As much as I'd like to avoid too much code being generated by macro, I'd even more like to avoid generic code with huge and complicated trait bounds. It comes down to style, and you gotta decide for yourself. /// Changes the fractional bit quantity, keeping the base type the same. pub fn adjust_fractional_bits>(self) -> Fx<$t, Y> { let leftward_movement: i32 = Y::to_i32() - F::to_i32(); Fx { num: if leftward_movement > 0 { self.num << leftward_movement } else { self.num >> (-leftward_movement) }, phantom: PhantomData, } } There's a few things at work. First, we introduce Y as the target number of fractional bits, and we also limit it that the target bits quantity can't be the same as we already have using a type-level operator. If it's the same as we started with, why are you doing the cast at all? Now, once we're sure that the current bits and target bits aren't the same, we compute target - start , and call this our \"leftward movement\". Example: if we're targeting 8 bits and we're at 4 bits, we do 8-4 and get +4 as our leftward movement. If the leftward_movement is positive we naturally shift our current value to the left. If it's not positive then it must be negative because we eliminated 0 as a possibility using the type-level operator, so we shift to the right by the negative value.","breadcrumbs":"Quirks » Adjusting Fractional Part","id":"25","title":"Adjusting Fractional Part"},"26":{"body":"From here on we're getting help from this blog post by Job Vranish , so thank them if you learn something. I might have given away the game a bit with those derive traits on our fixed point type. For a fair number of operations you can use the normal form of the op on the inner bits as long as the fractional parts have the same quantity. This includes equality and ordering (which we derived) as well as addition, subtraction, and bit shifting (which we need to do ourselves). This code can go outside the macro, with sufficient trait bounds. impl, F: Unsigned> Add for Fx { type Output = Self; fn add(self, rhs: Fx) -> Self::Output { Fx { num: self.num + rhs.num, phantom: PhantomData, } }\n} The bound on T makes it so that Fx can be added any time that T can be added to its own type with itself as the output. We can use the exact same pattern for Sub , Shl , Shr , and Neg . With enough trait bounds, we can do anything! impl, F: Unsigned> Sub for Fx { type Output = Self; fn sub(self, rhs: Fx) -> Self::Output { Fx { num: self.num - rhs.num, phantom: PhantomData, } }\n} impl, F: Unsigned> Shl for Fx { type Output = Self; fn shl(self, rhs: u32) -> Self::Output { Fx { num: self.num << rhs, phantom: PhantomData, } }\n} impl, F: Unsigned> Shr for Fx { type Output = Self; fn shr(self, rhs: u32) -> Self::Output { Fx { num: self.num >> rhs, phantom: PhantomData, } }\n} impl, F: Unsigned> Neg for Fx { type Output = Self; fn neg(self) -> Self::Output { Fx { num: -self.num, phantom: PhantomData, } }\n} Unfortunately, for Shl and Shr to have as much coverage on our type as it does on the base type (allowing just about any right hand side) we'd have to do another macro, but I think just u32 is fine. We can always add more later if we need. We could also implement BitAnd , BitOr , BitXor , and Not , but they don't seem relevent to our fixed point math use, and this section is getting long already. Just use the same general patterns if you want to add it in your own programs. Shockingly, Rem also works directly if you want it, though I don't forsee us needing floating point remainder. Also, the GBA can't do hardware division or remainder, and we'll have to work around that below when we implement Div (which maybe we don't need, but it's complex enough I should show it instead of letting people guess). Note: In addition to the various Op traits, there's also OpAssign variants. Each OpAssign is the same as Op , but takes &mut self instead of self and then modifies in place instead of producing a fresh value. In other words, if you want both + and += you'll need to do the AddAssign trait too. It's not the worst thing to just write a = a+b , so I won't bother with showing all that here. It's pretty easy to figure out for yourself if you want.","breadcrumbs":"Quirks » Addition, Subtraction, Shifting, Negative, Comparisons","id":"26","title":"Addition, Subtraction, Shifting, Negative, Comparisons"},"27":{"body":"This is where things get more interesting. When we have two numbers A and B they really stand for (a*f) and (b*f) . If we write A*B then we're really writing (a*f)*(b*f) , which can be rewritten as (a*b)*2f , and now it's obvious that we have one more f than we wanted to have. We have to do the multiply of the inner value and then divide out the f . We divide by 1 << bit_count , so if we have 8 fractional bits we'll divide by 256. The catch is that, when we do the multiply we're extremely likely to overflow our base type with that multiplication step. Then we do that divide, and now our result is basically nonsense. We can avoid this to some extent by casting up to a higher bit type, doing the multiplication and division at higher precision, and then casting back down. We want as much precision as possible without being too inefficient, so we'll always cast up to 32-bit (on a 64-bit machine you'd cast up to 64-bit instead). Naturally, any signed value has to be cast up to i32 and any unsigned value has to be cast up to u32 , so we'll have to handle those separately. Also, instead of doing an actual divide we can right-shift by the correct number of bits to achieve the same effect. Except when we have a signed value that's negative, because actual division truncates towards zero and right-shifting truncates towards negative infinity. We can get around this by flipping the sign, doing the shift, and flipping the sign again (which sounds silly but it's so much faster than doing an actual division). Also, again signed values can be annoying, because if the value just happens to be i32::MIN then when you negate it you'll have... still a negative value. I'm not 100% on this, but I think the correct thing to do at that point is to give $t::MIN as the output num value. Did you get all that? Good, because this involves casting, so we will need to implement it three times, which calls for another macro. macro_rules! fixed_point_signed_multiply { ($t:ident) => { impl Mul for Fx<$t, F> { type Output = Self; fn mul(self, rhs: Fx<$t, F>) -> Self::Output { let pre_shift = (self.num as i32).wrapping_mul(rhs.num as i32); if pre_shift < 0 { if pre_shift == core::i32::MIN { Fx { num: core::$t::MIN, phantom: PhantomData, } } else { Fx { num: (-((-pre_shift) >> F::U8)) as $t, phantom: PhantomData, } } } else { Fx { num: (pre_shift >> F::U8) as $t, phantom: PhantomData, } } } } };\n} fixed_point_signed_multiply! {i8}\nfixed_point_signed_multiply! {i16}\nfixed_point_signed_multiply! {i32} macro_rules! fixed_point_unsigned_multiply { ($t:ident) => { impl Mul for Fx<$t, F> { type Output = Self; fn mul(self, rhs: Fx<$t, F>) -> Self::Output { Fx { num: ((self.num as u32).wrapping_mul(rhs.num as u32) >> F::U8) as $t, phantom: PhantomData, } } } };\n} fixed_point_unsigned_multiply! {u8}\nfixed_point_unsigned_multiply! {u16}\nfixed_point_unsigned_multiply! {u32}","breadcrumbs":"Quirks » Multiplication","id":"27","title":"Multiplication"},"28":{"body":"Division is similar to multiplication, but reversed. Which makes sense. This time A/B gives (a*f)/(b*f) which is a/b , one less f than we were after. As with the multiplication version of things, we have to up-cast our inner value as much a we can before doing the math, to allow for the most precision possible. The snag here is that the GBA has no division or remainder. Instead, the GBA has a BIOS function you can call to do i32/i32 division. This is a potential problem for us though. If we have some unsigned value, we need it to fit within the positive space of an i32 after the multiply so that we can cast it to i32 , call the BIOS function that only works on i32 values, and cast it back to its actual type. If you have a u8 you're always okay, even with 8 floating bits. If you have a u16 you're okay even with a maximum value up to 15 floating bits, but having a maximum value and 16 floating bits makes it break. If you have a u32 you're probably going to be in trouble all the time. So... ugh, there's not much we can do about this. For now we'll just have to suffer some. // TODO: find a numerics book that tells us how to do u32/u32 divisions. macro_rules! fixed_point_signed_division { ($t:ident) => { impl Div for Fx<$t, F> { type Output = Self; fn div(self, rhs: Fx<$t, F>) -> Self::Output { let mul_output: i32 = (self.num as i32).wrapping_mul(1 << F::U8); let divide_result: i32 = crate::bios::div(mul_output, rhs.num as i32); Fx { num: divide_result as $t, phantom: PhantomData, } } } };\n} fixed_point_signed_division! {i8}\nfixed_point_signed_division! {i16}\nfixed_point_signed_division! {i32} macro_rules! fixed_point_unsigned_division { ($t:ident) => { impl Div for Fx<$t, F> { type Output = Self; fn div(self, rhs: Fx<$t, F>) -> Self::Output { let mul_output: i32 = (self.num as i32).wrapping_mul(1 << F::U8); let divide_result: i32 = crate::bios::div(mul_output, rhs.num as i32); Fx { num: divide_result as $t, phantom: PhantomData, } } } };\n} fixed_point_unsigned_division! {u8}\nfixed_point_unsigned_division! {u16}\nfixed_point_unsigned_division! {u32}","breadcrumbs":"Quirks » Division","id":"28","title":"Division"},"29":{"body":"TODO: look up tables! arcbits!","breadcrumbs":"Quirks » Trigonometry","id":"29","title":"Trigonometry"},"3":{"body":"So, what's this book actually gonna teach you? My goal is certainly not just showing off the crate. Programming for the GBA is weird enough that I'm trying to teach you all the rest of the stuff you need to know along the way. If I do my job right then you'd be able to write your own crate for GBA stuff just how you think it should all go by the end. Overall the book is sorted more for easy review once you're trying to program something. The GBA has a few things that can stand on their own and many other things are a mass of interconnected concepts, so some parts of the book end up having to refer you to portions that you haven't read yet. The chapters and sections are sorted so that minimal future references are required, but it's unavoidable that it'll happen sometimes. The actual \"tutorial order\" of the book is the Examples chapter. Each section of that chapter breaks down one of the provided examples in the examples directory of the repository. We go over what sections of the book you'll need to have read for the example code to make sense, and also how we apply the general concepts described in the book to the specific example cases.","breadcrumbs":"Introduction » Book Goals and Style","id":"3","title":"Book Goals and Style"},"30":{"body":"If, after seeing all that, and seeing that I still didn't even cover every possible trait impl that you might want for all the possible types... if after all that you feel too intimidated, then I'll cave a bit on your behalf and suggest to you that the fixed crate seems to be the best crate available for fixed point math. I have not tested its use on the GBA myself . It's just my recommendation from looking at the docs of the various options available, if you really wanted to just have a crate for it.","breadcrumbs":"Quirks » Just Using A Crate","id":"30","title":"Just Using A Crate"},"31":{"body":"TODO: update this when we can make more stuff const","breadcrumbs":"Quirks » Volatile Destination","id":"31","title":"Volatile Destination"},"32":{"body":"The compiler is an eager friend, so when it sees a read or a write that won't have an effect, it eliminates that read or write. For example, if we write let mut x = 5;\nx = 7; The compiler won't actually ever put 5 into x . It'll skip straight to putting 7 in x , because we never read from x when it's 5, so that's a safe change to make. Normally, values are stored in RAM, which has no side effects when you read and write from it. RAM is purely for keeping notes about values you'll need later on. However, what if we had a bit of hardware where we wanted to do a write and that did something other than keeping the value for us to look at later? As you saw in the hello_magic example, we have to use a write_volatile operation. Volatile means \"just do it anyway\". The compiler thinks that it's pointless, but we know better, so we can force it to really do exactly what we say by using write_volatile instead of write . This is kinda error prone though, right? Because it's just a raw pointer, so we might forget to use write_volatile at some point. Instead, we want a type that's always going to use volatile reads and writes. Also, we want a pointer type that lets our reads and writes to be as safe as possible once we've unsafely constructed the initial value.","breadcrumbs":"Quirks » Volatile Memory","id":"32","title":"Volatile Memory"},"33":{"body":"First, we want a type that stores a location within the address space. This can be a pointer, or a usize , and we'll use a usize because that's easier to work with in a const context (and we want to have const when we can get it). We'll also have our type use NonZeroUsize instead of just usize so that Option> stays as a single machine word. This helps quite a bit when we want to iterate over the addresses of a block of memory (such as locations within the palette memory). Hardware is never at the null address anyway. Also, if we had just an address number then we wouldn't be able to track what type the address is for. We need some PhantomData , and specifically we need the phantom data to be for *mut T : If we used *const T that'd have the wrong variance . If we used &mut T then that's fusing in the ideas of lifetime and exclusive access to our type. That's potentially important, but that's also an abstraction we'll build on top of this VolAddress type if we need it. One abstraction layer at a time, so we start with just a phantom pointer. This gives us a type that looks like this: #[derive(Debug)]\n#[repr(transparent)]\npub struct VolAddress { address: NonZeroUsize, marker: PhantomData<*mut T>,\n} Now, because of how derive is specified, it derives traits if the generic parameter supports those traits. Since our type is like a pointer, the traits it supports are distinct from whatever traits the target type supports. So we'll provide those implementations manually. impl Clone for VolAddress { fn clone(&self) -> Self { *self }\n}\nimpl Copy for VolAddress {}\nimpl PartialEq for VolAddress { fn eq(&self, other: &Self) -> bool { self.address == other.address }\n}\nimpl Eq for VolAddress {}\nimpl PartialOrd for VolAddress { fn partial_cmp(&self, other: &Self) -> Option { Some(self.address.cmp(&other.address)) }\n}\nimpl Ord for VolAddress { fn cmp(&self, other: &Self) -> Ordering { self.address.cmp(&other.address) }\n} Boilerplate junk, not interesting. There's a reason that you derive those traits 99% of the time in Rust.","breadcrumbs":"Quirks » Constructing The VolAddress Type","id":"33","title":"Constructing The VolAddress Type"},"34":{"body":"Okay so here's the next core concept: If we unsafely construct a VolAddress , then we can safely use the value once it's been properly created. // you'll need these features enabled and a recent nightly\n#![feature(const_int_wrapping)]\n#![feature(min_const_unsafe_fn)] impl VolAddress { pub const unsafe fn new_unchecked(address: usize) -> Self { VolAddress { address: NonZeroUsize::new_unchecked(address), marker: PhantomData, } } pub const unsafe fn cast(self) -> VolAddress { VolAddress { address: self.address, marker: PhantomData, } } pub unsafe fn offset(self, offset: isize) -> Self { VolAddress { address: NonZeroUsize::new_unchecked(self.address.get().wrapping_add(offset as usize * core::mem::size_of::())), marker: PhantomData, } }\n} So what are the unsafety rules here? Non-null, obviously. Must be aligned for T Must always produce valid bit patterns for T Must not be part of the address space that Rust's stack or allocator will ever uses. So, again using the hello_magic example, we had (0x400_0000 as *mut u16).write_volatile(0x0403); And instead we could declare const MAGIC_LOCATION: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0000) };","breadcrumbs":"Quirks » Constructing A VolAddress Value","id":"34","title":"Constructing A VolAddress Value"},"35":{"body":"Now that we've named the magic location, we want to write to it. impl VolAddress { pub fn read(self) -> T where T: Copy, { unsafe { (self.address.get() as *mut T).read_volatile() } } pub unsafe fn read_non_copy(self) -> T { (self.address.get() as *mut T).read_volatile() } pub fn write(self, val: T) { unsafe { (self.address.get() as *mut T).write_volatile(val) } }\n} So if the type is Copy we can read it as much as we want. If, somehow, the type isn't Copy , then it might be Drop , and that means if we read out a value over and over we could cause the drop method to trigger UB. Since the end user might really know what they're doing, we provide an unsafe backup read_non_copy . On the other hand, we can write to the location as much as we want. Even if the type isn't Copy , not running Drop is safe , so a write is always safe. Now we can write to our magical location. MAGIC_LOCATION.write(0x0403);","breadcrumbs":"Quirks » Using A VolAddress Value","id":"35","title":"Using A VolAddress Value"},"36":{"body":"We've already seen that sometimes we want to have a base address of some sort and then offset from that location to another. What if we wanted to iterate over all the locations . That's not particularly hard. impl VolAddress { pub const unsafe fn iter_slots(self, slots: usize) -> VolAddressIter { VolAddressIter { vol_address: self, slots } }\n} #[derive(Debug)]\npub struct VolAddressIter { vol_address: VolAddress, slots: usize,\n}\nimpl Clone for VolAddressIter { fn clone(&self) -> Self { VolAddressIter { vol_address: self.vol_address, slots: self.slots, } }\n}\nimpl PartialEq for VolAddressIter { fn eq(&self, other: &Self) -> bool { self.vol_address == other.vol_address && self.slots == other.slots }\n}\nimpl Eq for VolAddressIter {}\nimpl Iterator for VolAddressIter { type Item = VolAddress; fn next(&mut self) -> Option { if self.slots > 0 { let out = self.vol_address; unsafe { self.slots -= 1; self.vol_address = self.vol_address.offset(1); } Some(out) } else { None } }\n}\nimpl FusedIterator for VolAddressIter {}","breadcrumbs":"Quirks » VolAddress Iteration","id":"36","title":"VolAddress Iteration"},"37":{"body":"Obviously, having a base address and a length exist separately is error prone. There's a good reason for slices to keep their pointer and their length together. We want something like that, which we'll call a \"block\" because \"array\" and \"slice\" are already things in Rust. #[derive(Debug)]\npub struct VolAddressBlock { vol_address: VolAddress, slots: usize,\n}\nimpl Clone for VolAddressBlock { fn clone(&self) -> Self { VolAddressBlock { vol_address: self.vol_address, slots: self.slots, } }\n}\nimpl PartialEq for VolAddressBlock { fn eq(&self, other: &Self) -> bool { self.vol_address == other.vol_address && self.slots == other.slots }\n}\nimpl Eq for VolAddressBlock {} impl VolAddressBlock { pub const unsafe fn new_unchecked(vol_address: VolAddress, slots: usize) -> Self { VolAddressBlock { vol_address, slots } } pub const fn iter(self) -> VolAddressIter { VolAddressIter { vol_address: self.vol_address, slots: self.slots, } } pub unsafe fn index_unchecked(self, slot: usize) -> VolAddress { self.vol_address.offset(slot as isize) } pub fn index(self, slot: usize) -> VolAddress { if slot < self.slots { unsafe { self.vol_address.offset(slot as isize) } } else { panic!(\"Index Requested: {} >= Bound: {}\", slot, self.slots) } } pub fn get(self, slot: usize) -> Option> { if slot < self.slots { unsafe { Some(self.vol_address.offset(slot as isize)) } } else { None } }\n} Now we can have something like: const OTHER_MAGIC: VolAddressBlock = unsafe { VolAddressBlock::new_unchecked( VolAddress::new_unchecked(0x600_0000), 240 * 160 )\n}; OTHER_MAGIC.index(120 + 80 * 240).write_volatile(0x001F);\nOTHER_MAGIC.index(136 + 80 * 240).write_volatile(0x03E0);\nOTHER_MAGIC.index(120 + 96 * 240).write_volatile(0x7C00);","breadcrumbs":"Quirks » VolAddressBlock","id":"37","title":"VolAddressBlock"},"38":{"body":"If you wanna see these types and methods with a full docs write up you should check the GBA crate's source.","breadcrumbs":"Quirks » Docs?","id":"38","title":"Docs?"},"39":{"body":"In addition to some memory locations being volatile, it's also possible for inline assembly to be declared volatile. This is basically the same idea, \"hey just do what I'm telling you, don't get smart about it\". Normally when you have some asm! it's basically treated like a function, there's inputs and outputs and the compiler will try to optimize it so that if you don't actually use the outputs it won't bother with doing those instructions. However, asm! is basically a pure black box, so the compiler doesn't know what's happening inside at all, and it can't see if there's any important side effects going on. An example of an important side effect that doesn't have output values would be putting the CPU into a low power state while we want for the next VBlank. This lets us save quite a bit of battery power. It requires some setup to be done safely (otherwise the GBA won't ever actually wake back up from the low power state), but the asm! you use once you're ready is just a single instruction with no return value. The compiler can't tell what's going on, so you just have to say \"do it anyway\". Note that if you use a linker script to include any ASM with your Rust program (eg: the crt0.s file that we setup in the \"Development Setup\" section), all of that ASM is \"volatile\" for these purposes. Volatile isn't actually a hardware concept, it's just an LLVM concept, and the linker script runs after LLVM has done its work.","breadcrumbs":"Quirks » Volatile ASM","id":"39","title":"Volatile ASM"},"4":{"body":"Before you can build a GBA game you'll have to follow some special steps to setup the development environment. Once again, extra special thanks to Ketsuban , who first dove into how to make this all work with rust and then shared it with the world.","breadcrumbs":"Introduction » Development Setup","id":"4","title":"Development Setup"},"40":{"body":"TODO: we've already used newtype twice by now (fixed point values and volatile addresses), so we need to adjust how we start this section. There's a great Zero Cost abstraction that we'll be using a lot that you might not already be familiar with: we're talking about the \"Newtype Pattern\"! Now, I told you to read the Rust Book before you read this book, and I'm sure you're all good students who wouldn't sneak into this book without doing the required reading, so I'm sure you all remember exactly what I'm talking about, because they touch on the newtype concept in the book twice, in two very long named sections: Using the Newtype Pattern to Implement External Traits on External Types Using the Newtype Pattern for Type Safety and Abstraction ...Yeah... The Rust Book doesn't know how to make a short sub-section name to save its life. Shame.","breadcrumbs":"Quirks » Newtype","id":"40","title":"Newtype"},"41":{"body":"So, we have all these pieces of data, and we want to keep them separated, and we don't wanna pay the cost for it at runtime. Well, we're in luck, we can pay the cost at compile time. pub struct PixelColor(u16); TODO: we've already talked about repr(transparent) by now Ah, except that, as I'm sure you remember from The Rustonomicon (and from the RFC too, of course), if we have a single field struct that's sometimes different from having just the bare value, so we should be using #[repr(transparent)] with our newtypes. #[repr(transparent)]\npub struct PixelColor(u16); And then we'll need to do that same thing for every other newtype we want . Except there's only two tiny parts that actually differ between newtype declarations: the new name and the base type. All the rest is just the same rote code over and over. Generating piles and piles of boilerplate code? Sounds like a job for a macro to me!","breadcrumbs":"Quirks » Newtype Basics","id":"41","title":"Newtype Basics"},"42":{"body":"If you're going to do much with macros you should definitely read through The Little Book of Rust Macros , but we won't be doing too much so you can just follow along here a bit if you like. The most basic version of a newtype macro starts like this: #[macro_export]\nmacro_rules! newtype { ($new_name:ident, $old_name:ident) => { #[repr(transparent)] pub struct $new_name($old_name); };\n} The #[macro_export] makes it exported by the current module (like pub kinda), and then we have one expansion option that takes an identifier, a , , and then a second identifier. The new name is the outer type we'll be using, and the old name is the inner type that's being wrapped. You'd use our new macro something like this: newtype! {PixelColorCurly, u16} newtype!(PixelColorParens, u16); newtype![PixelColorBrackets, u16]; Note that you can invoke the macro with the outermost grouping as any of () , [] , or {} . It makes no particular difference to the macro. Also, that space in the first version is kinda to show off that you can put white space in between the macro name and the grouping if you want. The difference is mostly style, but there are some rules and considerations here: If you use curly braces then you must not put a ; after the invocation. If you use parentheses or brackets then you must put the ; at the end. Rustfmt cares which you use and formats accordingly: Curly brace macro use mostly gets treated like a code block. Parentheses macro use mostly gets treated like a function call. Bracket macro use mostly gets treated like an array declaration. As a reminder: remember that macro_rules macros have to appear before they're invoked in your source, so the newtype macro will always have to be at the very top of your file, or if you put it in a module within your project you'll need to declare the module before anything that uses it.","breadcrumbs":"Quirks » Making It A Macro","id":"42","title":"Making It A Macro"},"43":{"body":"We also want to be able to add derive stuff and doc comments to our newtype. Within the context of macro_rules! definitions these are called \"meta\". Since we can have any number of them we wrap it all up in a \"zero or more\" matcher. Then our macro looks like this: #[macro_export]\nmacro_rules! newtype { ($(#[$attr:meta])* $new_name:ident, $old_name:ident) => { $(#[$attr])* #[repr(transparent)] pub struct $new_name($old_name); };\n} So now we can write newtype! { /// Color on the GBA gives 5 bits for each channel, the highest bit is ignored. #[derive(Debug, Clone, Copy)] PixelColor, u16\n} Next, we can allow for the wrapping of types that aren't just a single identifier by changing $old_name from :ident to :ty . We can't also do this for the $new_type part because declaring a new struct expects a valid identifier that's not already declared (obviously), and :ty is intended for capturing types that already exist. #[macro_export]\nmacro_rules! newtype { ($(#[$attr:meta])* $new_name:ident, $old_name:ty) => { $(#[$attr])* #[repr(transparent)] pub struct $new_name($old_name); };\n} Next of course we'll want to usually have a new method that's const and just gives a 0 value. We won't always be making a newtype over a number value, but we often will. It's usually silly to have a new method with no arguments since we might as well just impl Default , but Default::default isn't const , so having pub const fn new() -> Self is justified here. Here, the token 0 is given the {integer} type, which can be converted into any of the integer types as needed, but it still can't be converted into an array type or a pointer or things like that. Accordingly we've added the \"no frills\" option which declares the struct and no new method. #[macro_export]\nmacro_rules! newtype { ($(#[$attr:meta])* $new_name:ident, $old_name:ty) => { $(#[$attr])* #[repr(transparent)] pub struct $new_name($old_name); impl $new_name { /// A `const` \"zero value\" constructor pub const fn new() -> Self { $new_name(0) } } }; ($(#[$attr:meta])* $new_name:ident, $old_name:ty, no frills) => { $(#[$attr])* #[repr(transparent)] pub struct $new_name($old_name); };\n} Finally, we usually want to have the wrapped value be totally private, but there are occasions where that's not the case. For this, we can allow the wrapped field to accept a visibility modifier. #[macro_export]\nmacro_rules! newtype { ($(#[$attr:meta])* $new_name:ident, $v:vis $old_name:ty) => { $(#[$attr])* #[repr(transparent)] pub struct $new_name($v $old_name); impl $new_name { /// A `const` \"zero value\" constructor pub const fn new() -> Self { $new_name(0) } } }; ($(#[$attr:meta])* $new_name:ident, $v:vis $old_name:ty, no frills) => { $(#[$attr])* #[repr(transparent)] pub struct $new_name($v $old_name); };\n}","breadcrumbs":"Quirks » Upgrade That Macro!","id":"43","title":"Upgrade That Macro!"},"44":{"body":"Have you ever wanted to assert things even before runtime ? We all have, of course. Particularly when the runtime machine is a poor little GBA, we'd like to have the machine doing the compile handle as much checking as possible. Enter the static assertions crate, which provides a way to let you assert on a const expression. This is an amazing crate that you should definitely use when you can. It's written by Nikolai Vazquez , and they kindly wrote up a blog post that explains the thinking behind it. However, I promised that each example would be single file, and I also promised to explain what's going on as we go, so we'll briefly touch upon giving an explanation here.","breadcrumbs":"Quirks » Constant Assertions","id":"44","title":"Constant Assertions"},"45":{"body":"Alright, as it stands (2018-12-15), we can't use if in a const context. Since we can't use if , we can't use a normal assert! . Some day it will be possible, and a failed assert at compile time will be a compile error and a failed assert at run time will be a panic and we'll have a nice unified programming experience. We can add runtime-only assertions by being a little tricky with the compiler. If we write const ASSERT: usize = 0 - 1; that gives a warning, since the math would underflow. We can upgrade that warning to a hard error: #[deny(const_err)]\nconst ASSERT: usize = 0 - 1; And to make our construction reusable we can enable the underscore_const_names feature in our program (or library) and then give each such const an underscore for a name. #![feature(underscore_const_names)] #[deny(const_err)]\nconst _: usize = 0 - 1; Now we wrap this in a macro where we give a bool expression as input. We negate the bool then cast it to a usize , meaning that true negates into false , which becomes 0usize , and then there's no underflow error. Or if the input was false , it negates into true , then becomes 1usize , and then the underflow error fires. macro_rules! const_assert { ($condition:expr) => { #[deny(const_err)] #[allow(dead_code)] const ASSERT: usize = 0 - !$condition as usize; }\n} Technically, written like this, the expression can be anything with a core::ops::Not implementation that can also be as cast into usize . That's bool , but also basically all the other number types. Since we want to ensure that we get proper looking type errors when things go wrong, we can use ($condition && true) to enforce that we get a bool (thanks to Talchas for that particular suggestion). macro_rules! const_assert { ($condition:expr) => { #[deny(const_err)] #[allow(dead_code)] const _: usize = 0 - !($condition && true) as usize; }\n}","breadcrumbs":"Quirks » How We Const Assert","id":"45","title":"How We Const Assert"},"46":{"body":"As an example of how we might use a const_assert , we'll do a demo with colors. There's a red, blue, and green channel. We store colors in a u16 with 5 bits for each channel. newtype! { #[derive(Debug, Clone, Copy, PartialEq, Eq)] Color, u16\n} And when we're building a color, we're passing in u16 values, but they could be using more than just 5 bits of space. We want to make sure that each channel is 31 or less, so we can make a color builder that does a const_assert! on the value of each channel. macro_rules! rgb { ($r:expr, $g:expr, $b:expr) => { { const_assert!($r <= 31); const_assert!($g <= 31); const_assert!($b <= 31); Color($b << 10 | $g << 5 | $r) } }\n} And then we can declare some colors const RED: Color = rgb!(31, 0, 0); const BLUE: Color = rgb!(31, 500, 0); The second one is clearly out of bounds and it fires an error just like we wanted.","breadcrumbs":"Quirks » Asserting Something","id":"46","title":"Asserting Something"},"47":{"body":"The GameBoy Advance sits in a middle place between the chthonic game consoles of the ancient past and the \"small PC in a funny case\" consoles of the modern age. On the one hand, yeah, you're gonna find a few strange conventions as you learn all the ropes. On the other, at least we're writing in Rust at all, and not having to do all the assembly by hand. This chapter for \"concepts\" has a section for each part of the GBA's hardware memory map, going by increasing order of base address value. The sections try to explain as much as possible while sticking to just the concerns you might have regarding that part of the memory map. For an assessment of how to wrangle all three parts of the video system (PALRAM, VRAM, and OAM), along with the correct IO registers, into something that shows a picture, you'll want the Video chapter. Similarly, the \"IO Registers\" part of the GBA actually controls how you interact with every single bit of hardware connected to the GBA. A full description of everything is obviously too much for just one section of the book. Instead you get an overview of general IO register rules and advice. Each particular register is described in the appropriate sections of either the Video or Non-Video chapters.","breadcrumbs":"Broad Concepts","id":"47","title":"Broad Concepts"},"48":{"body":"TODO: describe this","breadcrumbs":"Bus Size","id":"48","title":"Bus Size"},"49":{"body":"TODO: talk about parts where you can't write one byte at a time","breadcrumbs":"Minimum Write Size","id":"49","title":"Minimum Write Size"},"5":{"body":"Obviously you need your computer to have a working rust installation . However, you'll also need to ensure that you're using a nightly toolchain (we will need it for inline assembly, among other potential useful features). You can run rustup default nightly to set nightly as the system wide default toolchain, or you can use a toolchain file to use nightly just on a specific project, but either way we'll be assuming the use of nightly from now on. You'll also need the rust-src component so that cargo-xbuild will be able to compile the core crate for us in a bit, so run rustup component add rust-src . Next, you need devkitpro . They've got a graphical installer for Windows that runs nicely, and I guess pacman support on Linux (I'm on Windows so I haven't tried the Linux install myself). We'll be using a few of their general binutils for the arm-none-eabi target, and we'll also be using some of their tools that are specific to GBA development, so even if you already have the right binutils for whatever reason, you'll still want devkitpro for the gbafix utility. On Windows you'll want something like C:\\devkitpro\\devkitARM\\bin and C:\\devkitpro\\tools\\bin to be added to your PATH , depending on where you installed it to and such. On Linux you can use pacman to get it, and the default install puts the stuff in /opt/devkitpro/devkitARM/bin and /opt/devkitpro/tools/bin . If you need help you can look in our repository's .travis.yml file to see exactly what our CI does. Finally, you'll need cargo-xbuild . Just run cargo install cargo-xbuild and cargo will figure it all out for you.","breadcrumbs":"Introduction » Per System Setup","id":"5","title":"Per System Setup"},"50":{"body":"TODO: discuss what memory should be used volatile style and what can be used normal style.","breadcrumbs":"Volatile or Not?","id":"50","title":"Volatile or Not?"},"51":{"body":"","breadcrumbs":"Concepts » CPU","id":"51","title":"CPU"},"52":{"body":"Address Span: 0x0 to 0x3FFF (16k) The BIOS of the GBA is a small read-only portion of memory at the very base of the address space. However, it is also hardware protected against reading, so if you try to read from BIOS memory when the program counter isn't pointed into the BIOS (eg: any time code you write is executing) then you get basically garbage data back. So we're not going to spend time here talking about what bits to read or write within BIOS memory like we do with the other sections. Instead we're going to spend time talking about inline assembly ( tracking issue ) and then use it to call the GBA BIOS Functions . Note that BIOS calls have more overhead than normal function calls , so don't go using them all over the place if you don't have to. They're also usually written more to be compact in terms of code than for raw speed, so you actually can out speed them in some cases. Between the increased overhead and not being as speed optimized, you can sometimes do a faster job without calling the BIOS at all. (TODO: investigate more about what parts of the BIOS we could potentially offer faster alternatives for.) I'd like to take a moment to thank Marc Brinkmann (with contributions from Oliver Schneider and Philipp Oppermann ) for writing this blog post . It's at least ten times the tutorial quality as the asm entry in the Unstable Book has. In fairness to the Unstable Book, the actual spec of how inline ASM works in rust is \"basically what clang does\", and that's specified as \"basically what GCC does\", and that's basically/shockingly not specified much at all despite GCC being like 30 years old. So let's be slow and pedantic about this process.","breadcrumbs":"Concepts » BIOS","id":"52","title":"BIOS"},"53":{"body":"Fair Warning: Inline asm is one of the least stable parts of Rust overall, and if you write bad things you can trigger internal compiler errors and panics and crashes and make LLVM choke and die without explanation. If you write some inline asm and then suddenly your program suddenly stops compiling without explanation, try commenting out that whole inline asm use and see if it's causing the problem. Double check that you've written every single part of the asm call absolutely correctly, etc, etc. Bonus Warning: The general information that follows regarding the asm macro is consistent from system to system, but specific information about register names, register quantities, asm instruction argument ordering, and so on is specific to ARM on the GBA. If you're programming for any other device you'll need to carefully investigate that before you begin. Now then, with those out of the way, the inline asm docs describe an asm call as looking like this: asm!(assembly template : output operands : input operands : clobbers : options ); And once you stick a lot of stuff in there it can absolutely be hard to remember the ordering of the elements. So we'll start with a code block that has some comments thrown in on each line: asm!(/* ASM */ TODO :/* OUT */ TODO :/* INP */ TODO :/* CLO */ TODO :/* OPT */\n); Now we have to decide what we're gonna write. Obviously we're going to do some instructions, but those instructions use registers, and how are we gonna talk about them? We've got two choices. We can pick each and every register used by specifying exact register names. In THUMB mode we have 8 registers available, named r0 through r7 . If you switch into 32-bit mode there's additional registers that are also available. We can specify slots for registers we need and let LLVM decide. In this style you name your slots $0 , $1 and so on. Slot numbers are assigned first to all specified outputs, then to all specified inputs, in the order that you list them. In the case of the GBA BIOS, each BIOS function has pre-designated input and output registers, so we will use the first style. If you use inline ASM in other parts of your code you're free to use the second style.","breadcrumbs":"Concepts » Inline ASM","id":"53","title":"Inline ASM"},"54":{"body":"This is just one big string literal. You write out one instruction per line, and excess whitespace is ignored. You can also do comments within your assembly using ; to start a comment that goes until the end of the line. Assembly convention doesn't consider it unreasonable to comment potentially as much as every single line of asm that you write when you're getting used to things. Or even if you are used to things. This is cryptic stuff, there's a reason we avoid writing in it as much as possible. Remember that our Rust code is in 16-bit mode. You can switch to 32-bit mode within your asm as long as you switch back by the time the block ends. Otherwise you'll have a bad time.","breadcrumbs":"Concepts » Assembly","id":"54","title":"Assembly"},"55":{"body":"A comma separated list. Each entry looks like \"constraint\" (binding) An output constraint starts with a symbol: = for write only + for reads and writes & for for \"early clobber\", meaning that you'll write to this at some point before all input values have been read. It prevents this register from being assigned to an input register. Followed by either the letter r (if you want LLVM to pick the register to use) or curly braces around a specific register (if you want to pick). The binding can be any single 32-bit or smaller value. If your binding has bit pattern requirements (\"must be non-zero\", etc) you are responsible for upholding that. If your binding type will try to Drop later then you are responsible for it being in a fit state to do that. The binding must be either a mutable binding or a binding that was pre-declared but not yet assigned. Anything else is UB.","breadcrumbs":"Concepts » Outputs","id":"55","title":"Outputs"},"56":{"body":"This is a similar comma separated list. \"constraint\" (binding) An input constraint doesn't have the symbol prefix, you just pick either r or a named register with curly braces around it. An input binding must be a single 32-bit or smaller value. An input binding should be a type that is Copy but this is not an absolute requirement. Having the input be read is semantically similar to using core::ptr::read(&binding) and forgetting the value when you're done.","breadcrumbs":"Concepts » Inputs","id":"56","title":"Inputs"},"57":{"body":"Sometimes your asm will touch registers other than the ones declared for input and output. Clobbers are declared as a comma separated list of string literals naming specific registers. You don't use curly braces with clobbers. LLVM needs to know this information. It can move things around to keep your data safe, but only if you tell it what's about to happen. Failure to define all of your clobbers can cause UB.","breadcrumbs":"Concepts » Clobbers","id":"57","title":"Clobbers"},"58":{"body":"There's only one option we'd care to specify. That option is \"volatile\". Just like with a function call, LLVM will skip a block of asm if it doesn't see that any outputs from the asm were used later on. Nearly every single BIOS call (other than the math operations) will need to be marked as \"volatile\".","breadcrumbs":"Concepts » Options","id":"58","title":"Options"},"59":{"body":"Inputs are always r0 , r1 , r2 , and/or r3 , depending on function. Outputs are always zero or more of r0 , r1 , and r3 . Any of the output registers that aren't actually used should be marked as clobbered. All other registers are unaffected. All of the GBA BIOS calls are performed using the swi instruction, combined with a value depending on what BIOS function you're trying to invoke. If you're in 16-bit code you use the value directly, and if you're in 32-bit mode you shift the value up by 16 bits first.","breadcrumbs":"Concepts » BIOS ASM","id":"59","title":"BIOS ASM"},"6":{"body":"Once the system wide tools are ready, you'll need some particular files each time you want to start a new project. You can find them in the root of the rust-console/gba repo . thumbv4-none-agb.json describes the overall GBA to cargo-xbuild (and LLVM) so it knows what to do. Technically the GBA is thumbv4-none-eabi , but we change the eabi to agb so that we can distinguish it from other eabi devices when using cfg flags. crt0.s describes some ASM startup stuff. If you have more ASM to place here later on this is where you can put it. You also need to build it into a crt0.o file before it can actually be used, but we'll cover that below. linker.ld tells the linker all the critical info about the layout expectations that the GBA has about our program, and that it should also include the crt0.o file with our compiled rust code.","breadcrumbs":"Introduction » Per Project Setup","id":"6","title":"Per Project Setup"},"60":{"body":"For our example we'll use the division function, because GBATEK gives very clear instructions on how each register is used with that one: Signed Division, r0/r1. r0 signed 32bit Number r1 signed 32bit Denom\nReturn: r0 Number DIV Denom ;signed r1 Number MOD Denom ;signed r3 ABS (Number DIV Denom) ;unsigned\nFor example, incoming -1234, 10 should return -123, -4, +123.\nThe function usually gets caught in an endless loop upon division by zero. The math folks tell me that the r1 value should be properly called the \"remainder\" not the \"modulus\". We'll go with that for our function, doesn't hurt to use the correct names. Our Rust function has an assert against dividing by 0 , then we name some bindings without giving them a value, we make the asm call, and then return what we got. pub fn div_rem(numerator: i32, denominator: i32) -> (i32, i32) { assert!(denominator != 0); let div_out: i32; let rem_out: i32; unsafe { asm!(/* ASM */ \"swi 0x06\" :/* OUT */ \"={r0}\"(div_out), \"={r1}\"(rem_out) :/* INP */ \"{r0}\"(numerator), \"{r1}\"(denominator) :/* CLO */ \"r3\" :/* OPT */ ); } (div_out, rem_out)\n} I hope this all makes sense by now.","breadcrumbs":"Concepts » Example BIOS Function: Division","id":"60","title":"Example BIOS Function: Division"},"61":{"body":"For a full list of all the specific BIOS functions and their use you should check the gba::bios module within the gba crate. There's just so many of them that enumerating them all here wouldn't serve much purpose. Which is not to say that we'll never cover any BIOS functions in this book! Instead, we'll simply mention them when whenever they're relevent to the task at hand (such as controlling sound or waiting for vblank). //TODO: list/name all BIOS functions as well as what they relate to elsewhere.","breadcrumbs":"Concepts » Specific BIOS Functions","id":"61","title":"Specific BIOS Functions"},"62":{"body":"","breadcrumbs":"Concepts » Work RAM","id":"62","title":"Work RAM"},"63":{"body":"Address Span: 0x2000000 to 0x203FFFF (256k) This is a big pile of space, the use of which is up to each game. However, the external work ram has only a 16-bit bus (if you read/write a 32-bit value it silently breaks it up into two 16-bit operations) and also 2 wait cycles (extra CPU cycles that you have to expend per 16-bit bus use ). It's most helpful to think of EWRAM as slower, distant memory, similar to the \"heap\" in a normal application. You can take the time to go store something within EWRAM, or to load it out of EWRAM, but if you've got several operations to do in a row and you're worried about time you should pull that value into local memory, work on your local copy, and then push it back out to EWRAM.","breadcrumbs":"Concepts » External Work RAM (EWRAM)","id":"63","title":"External Work RAM (EWRAM)"},"64":{"body":"Address Span: 0x3000000 to 0x3007FFF (32k) This is a smaller pile of space, but it has a 32-bit bus and no wait. By default, 0x3007F00 to 0x3007FFF is reserved for interrupt and BIOS use. The rest of it is mostly up to you. The user's stack space starts at 0x3007F00 and proceeds down from there. For best results you should probably start at 0x3000000 and then go upwards. Under normal use it's unlikely that the two memory regions will crash into each other.","breadcrumbs":"Concepts » Internal Work RAM (IWRAM)","id":"64","title":"Internal Work RAM (IWRAM)"},"65":{"body":"Address Span: 0x400_0000 to 0x400_03FE","breadcrumbs":"Concepts » IO Registers","id":"65","title":"IO Registers"},"66":{"body":"Address Span: 0x500_0000 to 0x500_03FF (1k) Palette RAM has a 16-bit bus, which isn't really a problem because it conceptually just holds u16 values. There's no automatic wait state, but if you try to access the same location that the display controller is accessing you get bumped by 1 cycle. Since the display controller can use the palette ram any number of times per scanline it's basically impossible to predict if you'll have to do a wait or not during VDraw. During VBlank you won't have any wait of course. PALRAM is among the memory where there's weirdness if you try to write just one byte: if you try to write just 1 byte, it writes that byte into both parts of the larger 16-bit location. This doesn't really affect us much with PALRAM, because palette values are all supposed to be u16 anyway. The palette memory actually contains not one, but two sets of palettes. First there's 256 entries for the background palette data (starting at 0x500_0000 ), and then there's 256 entries for object palette data (starting at 0x500_0200 ). The GBA also has two modes for palette access: 8-bits-per-pixel (8bpp) and 4-bits-per-pixel (4bpp). In 8bpp mode an 8-bit palette index value within a background or sprite simply indexes directly into the 256 slots for that type of thing. In 4bpp mode a 4-bit palette index value within a background or sprite specifies an index within a particular \"palbank\" (16 palette entries each), and then a separate setting outside of the graphical data determines which palbank is to be used for that background or object (the screen entry data for backgrounds, and the object attributes for objects).","breadcrumbs":"Concepts » Palette RAM (PALRAM)","id":"66","title":"Palette RAM (PALRAM)"},"67":{"body":"When a pixel within a background or object specifies index 0 as its palette entry it is treated as a transparent pixel. This means that in 8bpp mode there's only 255 actual color options (0 being transparent), and in 4bpp mode there's only 15 actual color options available within each palbank (the 0th entry of each palbank is transparent). Individual backgrounds, and individual objects, each determine if they're 4bpp or 8bpp separately, so a given overall palette slot might map to a used color in 8bpp and an unused/transparent color in 4bpp. If you're a palette wizard. Palette slot 0 of the overall background palette is used to determine the \"backdrop\" color. That's the color you see if no background or object ends up being rendered within a given pixel. Since display mode 3 and display mode 5 don't use the palette, they cannot benefit from transparency.","breadcrumbs":"Concepts » Transparency","id":"67","title":"Transparency"},"68":{"body":"Address Span: 0x600_0000 to 0x601_7FFF (96k) We've used this before! VRAM has a 16-bit bus and no wait. However, the same as with PALRAM, the \"you might have to wait if the display controller is looking at it\" rule applies here. Unfortunately there's not much more exact detail that can be given about VRAM. The use of the memory depends on the video mode that you're using. One general detail of note is that you can't write individual bytes to any part of VRAM. Depending on mode and location, you'll either get your bytes doubled into both the upper and lower parts of the 16-bit location targeted, or you won't even affect the memory. This usually isn't a big deal, except in two situations: In Mode 4, if you want to change just 1 pixel, you'll have to be very careful to read the old u16 , overwrite just the byte you wanted to change, and then write that back. In any display mode, avoid using memcopy to place things into VRAM. It's written to be byte oriented, and only does 32-bit transfers under select conditions. The rest of the time it'll copy one byte at a time and you'll get either garbage or nothing at all.","breadcrumbs":"Concepts » Video RAM (VRAM)","id":"68","title":"Video RAM (VRAM)"},"69":{"body":"Address Span: 0x700_0000 to 0x700_03FF (1k) The Object Attribute Memory has a 32-bit bus and no default wait, but suffers from the \"you might have to wait if the display controller is looking at it\" rule. You cannot write individual bytes to OAM at all, but that's not really a problem because all the fields of the data types within OAM are either i16 or u16 anyway. Object attribute memory is the wildest yet: it conceptually contains two types of things, but they're interlaced with each other all the way through. Now, GBATEK and CowByte doesn't quite give names to the two data types here. TONC calls them OBJ_ATTR and OBJ_AFFINE , but we'll be giving them names fitting with the Rust naming convention. Just know that if you try to talk about it with others they might not be using the same names. In Rust terms their layout would look like this: #[repr(C)]\npub struct ObjectAttributes { attr0: u16, attr1: u16, attr2: u16, filler: i16,\n} #[repr(C)]\npub struct AffineMatrix { filler0: [u16; 3], pa: i16, filler1: [u16; 3], pb: i16, filler2: [u16; 3], pc: i16, filler3: [u16; 3], pd: i16,\n} (Note: the #[repr(C)] part just means that Rust must lay out the data exactly in the order we specify, which otherwise it is not required to do). So, we've got 1024 bytes in OAM and each ObjectAttributes value is 8 bytes, so naturally we can support up to 128 objects. At the same time , we've got 1024 bytes in OAM and each AffineMatrix is 32 bytes, so we can have 32 of them. But, as I said, these things are all interlaced with each other. See how there's \"filler\" fields in each struct? If we imagine the OAM as being just an array of one type or the other, indexes 0/1/2/3 of the ObjectAttributes array would line up with index 0 of the AffineMatrix array. It's kinda weird, but that's just how it works. When we setup functions to read and write these values we'll have to be careful with how we do it. We probably won't want to use those representations above, at least not with the AffineMatrix type, because they're quite wasteful if you want to store just object attributes or just affine matrices.","breadcrumbs":"Concepts » Object Attribute Memory (OAM)","id":"69","title":"Object Attribute Memory (OAM)"},"7":{"body":"Once all the tools are in place, there's particular steps that you need to compile the project. For these to work you'll need some source code to compile. Unlike with other things, an empty main file and/or an empty lib file will cause a total build failure, because we'll need a no_std build, and rust defaults to builds that use the standard library. The next section has a minimal example file you can use (along with explanation), but we'll describe the build steps here. arm-none-eabi-as crt0.s -o target/crt0.o This builds your text format crt0.s file into object format crt0.o that's placed in the target/ directory. Note that if the target/ directory doesn't exist yet it will fail, so you have to make the directory if it's not there. You don't need to rebuild crt0.s every single time, only when it changes, but you might as well throw a line to do it every time into your build script so that you never forget because it's a practically instant operation anyway. cargo xbuild --target thumbv4-none-agb.json This builds your Rust source. It accepts most of the normal options, such as --release , and options, such as --bin foo or --examples , that you'd expect cargo to accept. You can not build and run tests this way, because they require std , which the GBA doesn't have. If you want you can still run some of your project's tests with cargo test --lib or similar, but that builds for your local machine, so anything specific to the GBA (such as reading and writing registers) won't be testable that way. If you want to isolate and try out some piece code running on the GBA you'll unfortunately have to make a demo for it in your examples/ directory and then run the demo in an emulator and see if it does what you expect. The file extension is important! It will work if you forget it, but cargo xbuild takes the inclusion of the extension as a flag to also compile dependencies with the same sysroot, so you can include other crates in your build. Well, crates that work in the GBA's limited environment, but you get the idea. At this point you have an ELF binary that some emulators can execute directly (more on that later). However, if you want a \"real\" ROM that works in all emulators and that you could transfer to a flash cart to play on real hardware there's a little more to do. arm-none-eabi-objcopy -O binary target/thumbv4-none-agb/MODE/BIN_NAME target/ROM_NAME.gba This will perform an objcopy on our program. Here I've named the program arm-none-eabi-objcopy , which is what devkitpro calls their version of objcopy that's specific to the GBA in the Windows install. If the program isn't found under that name, have a look in your installation directory to see if it's under a slightly different name or something. As you can see from reading the man page, the -O binary option takes our lovely ELF file with symbols and all that and strips it down to basically a bare memory dump of the program. The next argument is the input file. You might not be familiar with how cargo arranges stuff in the target/ directory, and between RLS and cargo doc and stuff it gets kinda crowded, so it goes like this: Since our program was built for a non-local target, first we've got a directory named for that target, thumbv4-none-agb/ Next, the \"MODE\" is either debug/ or release/ , depending on if we had the --release flag included. You'll probably only be packing release mode programs all the way into GBA roms, but it works with either mode. Finally, the name of the program. If your program is something out of the project's src/bin/ then it'll be that file's name, or whatever name you configured for the bin in the Cargo.toml file. If your program is something out of the project's examples/ directory there will be a similar examples/ sub-directory first, and then the example's name. The final argument is the output of the objcopy , which I suggest putting at just the top level of the target/ directory. Really it could go anywhere, but if you're using git then it's likely that your .gitignore file is already setup to exclude everything in target/ , so this makes sure that your intermediate game builds don't get checked into your git. gbafix target/ROM_NAME.gba The gbafix tool also comes from devkitpro. The GBA is very picky about a ROM's format, and gbafix patches the ROM's header and such so that it'll work right. Unlike objcopy , this tool is custom built for GBA development, so it works just perfectly without any arguments beyond the file name. The ROM is patched in place, so we don't even need to specify a new destination. And you're finally done! Of course, you probably want to make a script for all that, but it's up to you. On our own project we have it mostly set up within a Makefile.toml which runs using the cargo-make plugin.","breadcrumbs":"Introduction » Compiling","id":"7","title":"Compiling"},"70":{"body":"Address Span (Wait State 0): 0x800_0000 to 0x9FF_FFFF Address Span (Wait State 1): 0xA00_0000 to 0xBFF_FFFF Address Span (Wait State 2): 0xC00_0000 to 0xDFF_FFFF The game's ROM data is a single set of data that's up to 32 megabytes in size. However, that data is mirrored to three different locations in the address space. Depending on which part of the address space you use, it can affect the memory timings involved. TODO: describe WAITCNT here, we won't get a better chance at it. TODO: discuss THUMB vs ARM code and why THUMB is so much faster (because ROM is a 16-bit bus)","breadcrumbs":"Concepts » Game Pak ROM / Flash ROM (ROM)","id":"70","title":"Game Pak ROM / Flash ROM (ROM)"},"71":{"body":"Address Span: 0xE00_0000 to 0xE00FFFF (64k) The actual amount of SRAM available depends on your game pak, and the 64k figure is simply the maximum possible. A particular game pak might have less, and an emulator will likely let you have all 64k if you want. As with other portions of the address space, SRAM has some number of wait cycles per use. As with ROM, you can change the wait cycle settings via the WAITCNT register if the defaults don't work well for your game pak. See the ROM section for full details of how the WAITCNT register works. The game pak SRAM also has only an 8-bit bus, so have fun with that. The GBA Direct Memory Access (DMA) unit cannot access SRAM. Also, you should not write to SRAM with code executing from ROM . Instead, you should move the code to WRAM and execute the save code from there. We'll cover how to handle that eventually.","breadcrumbs":"Concepts » Save RAM (SRAM)","id":"71","title":"Save RAM (SRAM)"},"72":{"body":"GBA Video starts with an IO register called the \"Display Control Register\", and then spirals out from there. You generally have to use Palette RAM (PALRAM), Video RAM (VRAM), Object Attribute Memory (OAM), as well as any number of other IO registers. They all have to work together just right, and there's a lot going on when you first try doing it, so try to take it very slowly as you're learning each step.","breadcrumbs":"Video","id":"72","title":"Video"},"73":{"body":"","breadcrumbs":"Video » RBG15 Color","id":"73","title":"RBG15 Color"},"74":{"body":"","breadcrumbs":"Video » TODO","id":"74","title":"TODO"},"75":{"body":"Besides video effects the GBA still has an okay amount of stuff going on. Obviously you'll want to know how to read the user's button inputs. That can almost go without saying, except that I said it. Each other part can be handled in about any order you like. Using interrupts is perhaps one of the hardest things for us as Rust programmers due to quirks in our compilation process. Our code all gets compiled to 16-bit THUMB instructions, and we don't have a way to mark a function to be compiled using 32-bit ASM instructions instead. However, an interrupt handler must be written in 32-bit ASM instructions for it to work. That means that we have to write our interrupt handler in 32-bit ASM by hand. We'll do it, but I don't think we'll be too happy about it. The Link Cable related stuff is also probably a little harder to test than anything else. Just because link cable emulation isn't always the best, and or you need two GBAs with two flash carts and the cable for hardware testing. Still, we'll try to go over it eventually.","breadcrumbs":"Non-Video","id":"75","title":"Non-Video"},"76":{"body":"It's all well and good to just show a picture, even to show an animation, but if we want a game we have to let the user interact with something.","breadcrumbs":"Non-Video » Buttons","id":"76","title":"Buttons"},"77":{"body":"KEYINPUT, 0x400_0130 , u16 , read only This little u16 stores the status of all the buttons on the GBA, all at once. There's only 10 of them, and we have 16 bits to work with, so that sounds easy. However, there's a bit of a catch. The register follows a \"low-active\" convention, where pressing a button clears that bit until it's released. const NO_BUTTONS_PRESSED: u16 = 0b0000_0011_1111_1111; The buttons are, going up in order from the 0th bit: A B Select Start Right Left Up Down R L Bits above that are not used. However, since the left and right directions, as well as the up and down directions, can never be pressed at the same time, the KEYINPUT register should never read as zero. Of course, the register might read as zero if someone is using an emulator that allows for such inputs, so I wouldn't go so far as to make it be NonZeroU16 or anything like that. When programming, we usually are thinking of what buttons we want to have be pressed instead of buttons we want to have not be pressed . This means that we need an inversion to happen somewhere along the line. The easiest moment of inversion is immediately as you read in from the register and wrap the value up in a newtype. pub fn read_key_input() -> KeyInput { KeyInput(KEYINPUT.read() ^ 0b0000_0011_1111_1111)\n} Now the KeyInput you get can be checked for what buttons are pressed by checking for a set bit like you'd do anywhere else. impl KeyInput { pub fn a_pressed(self) -> bool { (self.0 & A_BIT) > 0 }\n} Note that the current KEYINPUT value changes in real time as the user presses or releases the buttons. To account for this, it's best to read the value just once per game frame and then use that single value as if it was the input across the whole frame. If you've worked with polling input before that should sound totally normal. If not, just remember to call read_key_input once per frame and then use that KeyInput value across the whole frame.","breadcrumbs":"Non-Video » Key Input Register","id":"77","title":"Key Input Register"},"78":{"body":"The keypad only tells you what's currently pressed, but if you want to check what's newly pressed it's not too much harder. All that you do is store the last frame's keys and compare them to the current keys with an XOR . In the gba crate it's called KeyInput::difference . Once you've got the difference between last frame and this frame, you know what changes happened. If something is in the difference and not pressed in the last frame, that means it was newly pressed. If something is in the difference and pressed in the last frame that means it was newly released. If something is not in the difference then there's no change between last frame and this frame.","breadcrumbs":"Non-Video » Detecting New Presses","id":"78","title":"Detecting New Presses"},"79":{"body":"KEYCNT, 0x400_0132 , u16 , read/write This lets you control what keys will trigger a keypad interrupt. Of course, for the actual interrupt to fire you also need to set the IME and IE registers properly. See the Interrupts section for details there. The main thing to know about this register is that the keys are in the exact same order as the key input order. However, with this register they use a high-active convention instead (eg: the bit is active when the button should be pressed as part of the interrupt). In addition to simply having the bits for the buttons, bit 14 is a flag for enabling keypad interrupts (in addition to the flag in the IE register), and bit 15 decides how having more than one button works. If bit 15 is disabled, it's an OR combination (eg: \"press any key to continue\"). If bit 15 is enabled it's an AND combination (eg: \"press A+B+Start+Select to reset\").","breadcrumbs":"Non-Video » Key Interrupt Control","id":"79","title":"Key Interrupt Control"},"8":{"body":"So we know all the steps to build our source, we just need some source. We're beginners, so we'll start small. With normal programming there's usually a console available, so the minimal program prints \"Hello, world\" to the terminal. On a GBA we don't have a terminal and standard out and all that, so the minimal program draws a red, blue, and green dot to the screen. At the lowest level of device programming, it's all Magic Numbers . You write special values to special places and then the hardware does something. A clear API makes every magic number and magic location easy to understand. A clear and good API also prevents you from using the wrong magic number in the wrong place and causing problems for yourself. This is the minimal example to just test that our build system is all set, so just this once we'll go full magic number crazy town, for fun. Ready? Here goes: hello_magic.rs : #![no_std]\n#![feature(start)] #[panic_handler]\nfn panic(_info: &core::panic::PanicInfo) -> ! { loop {}\n} #[start]\nfn main(_argc: isize, _argv: *const *const u8) -> isize { unsafe { (0x400_0000 as *mut u16).write_volatile(0x0403); (0x600_0000 as *mut u16).offset(120 + 80 * 240).write_volatile(0x001F); (0x600_0000 as *mut u16).offset(136 + 80 * 240).write_volatile(0x03E0); (0x600_0000 as *mut u16).offset(120 + 96 * 240).write_volatile(0x7C00); loop {} }\n} Throw that into your project skeleton, build the program, and give it a run. You should see a red, green, and blue dot close-ish to the middle of the screen. If you don't, something already went wrong. Double check things, phone a friend, write your senators, try asking Lokathor or Ketsuban on the Rust Community Discord , until you're eventually able to get your three dots going. Of course, I'm sure you want to know why those numbers are the numbers to use. Well that's what the whole rest of the book is about!","breadcrumbs":"Introduction » Hello, Magic","id":"8","title":"Hello, Magic"},"80":{"body":"","breadcrumbs":"Non-Video » Timers","id":"80","title":"Timers"},"81":{"body":"The GBA has four Direct Memory Access (DMA) units that can be utilized. They're mostly the same in terms of overall operation, but each unit has special rules that make it better suited to a particular task. Please Note: TONC and GBATEK have slightly different concepts of how a DMA unit's registers should be viewed. I've chosen to go by what GBATEK uses.","breadcrumbs":"Non-Video » Direct Memory Access","id":"81","title":"Direct Memory Access"},"82":{"body":"A single DMA unit is controlled through four different IO Registers. Source: ( DMAxSAD , read only) A *const pointer that the DMA reads from. Destination: ( DMAxDAD , read only) A *mut pointer that the DMA writes to. Count: ( DMAxCNT_L , read only) How many transfers to perform. Control: ( DMAxCNT_H , read/write) A register full of bit-flags that controls all sorts of details. Here, the x is replaced with 0 through 3 when utilizing whichever particular DMA unit.","breadcrumbs":"Non-Video » General DMA","id":"82","title":"General DMA"},"83":{"body":"This is either a u32 or u16 address depending on the unit's assigned transfer mode (see Control). The address MUST be aligned. With DMA0 the source must be internal memory. With other DMA units the source can be any non- SRAM location.","breadcrumbs":"Non-Video » Source Address","id":"83","title":"Source Address"},"84":{"body":"As with the Source, this is either a u32 or u16 address depending on the unit's assigned transfer mode (see Control). The address MUST be aligned. With DMA0/1/2 the destination must be internal memory. With DMA3 the destination can be any non- SRAM memory (allowing writes into Game Pak ROM / FlashROM, assuming that your Game Pak hardware supports that).","breadcrumbs":"Non-Video » Destination Address","id":"84","title":"Destination Address"},"85":{"body":"This is a u16 that says how many transfers ( u16 or u32 ) to make. DMA0/1/2 will only actually accept a 14-bit value, while DMA3 will accept a full 16-bit value. A value of 0 instead acts as if you'd used the maximum value for the DMA in question. Put another way, DMA0/1/2 transfer 1 through 0x4000 words, with 0 as the 0x4000 value, and DMA3 transfers 1 through 0x1_0000 words, with 0 as the 0x1_0000 value. The maximum value isn't a very harsh limit. Even in just u16 mode, 0x4000 transfers is 32k, which would for example be all 32k of IWRAM (including your own user stack). If you for some reason do need to transfer more than a single DMA use can move around at once then you can just setup the DMA a second time and keep going.","breadcrumbs":"Non-Video » Count","id":"85","title":"Count"},"86":{"body":"This u16 bit-flag field is where things get wild. Bits 0-4 do nothing Bit 5-6 control how the destination address changes per transfer: 0: Offset +1 1: Offset -1 2: No Change 3: Offset +1 and reload when a Repeat starts (below) Bit 7-8 similarly control how the source address changes per transfer: 0: Offset +1 1: Offset -1 2: No Change 3: Prohibited Bit 9: enables Repeat mode. Bit 10: Transfer u16 (false) or u32 (true) data. Bit 11: \"Game Pak DRQ\" flag. GBATEK says that this is only allowed for DMA3, and also your Game Pak hardware must be equipped to use DRQ mode. I don't even know what DRQ mode is all about, and GBATEK doesn't say much either. If DRQ is set then you must not set the Repeat bit as well. The gba crate simply doesn't bother to expose this flag to users. Bit 12-13: DMA Start: 0: \"Immediate\", which is 2 cycles after requested. 1: VBlank 2: HBlank 3: Special, depending on what DMA unit is involved: DMA0: Prohibited. DMA1/2: Sound FIFO (see the Sound section) DMA3: Video Capture, intended for use with the Repeat flag, performs a transfer per scanline (similar to HBlank) starting at VCOUNT 2 and stopping at VCOUNT 162. Intended for copying things from ROM or camera into VRAM. Bit 14: Interrupt upon DMA complete. Bit 15: Enable this DMA unit.","breadcrumbs":"Non-Video » Control","id":"86","title":"Control"},"87":{"body":"The general technique for using a DMA unit involves first setting the relevent source, destination, and count registers, then setting the appropriate control register value with the Enable bit set. Once the Enable flag is set the appropriate DMA unit will trigger at the assigned time (Bit 12-13). The CPU's operation is halted while any DMA unit is active, until the DMA completes its task. If more than one DMA unit is supposed to be active at once, then the DMA unit with the lower number will activate and complete before any others. When the DMA triggers via Enable , the Source , Destination , and Count values are copied from the GBA's registers into the DMA unit's internal registers. Changes to the DMA unit's internal copy of the data don't affect the values in the GBA registers. Another Enable will read the same values as before. If DMA is triggered via having Repeat active then only the Count is copied in to the DMA unit registers. The Source and Destination are unaffected during a Repeat. The exception to this is if the destination address control value (Bits 5-6) are set to 3 ( 0b11 ), in which case a Repeat will also re-copy the Destination as well as the Count . Once a DMA operation completes, the Enable flag of its Control register will automatically be disabled, unless the Repeat flag is on, in which case the Enable flag is left active. You will have to manually disable it if you don't want the DMA to kick in again over and over at the specified starting time.","breadcrumbs":"Non-Video » DMA Life Cycle","id":"87","title":"DMA Life Cycle"},"88":{"body":"The DMA units cannot access SRAM at all. If you're using HBlank to access any part of the memory that the display controller utilizes ( OAM , PALRAM , VRAM ), you need to have enabled the \"HBlank Interval Free\" bit in the Display Control Register ( DISPCNT ). Whenever DMA is active the CPU is not active, which means that Interrupts will not fire while DMA is happening. This can cause any number of hard to track down bugs. Try to limit your use of the DMA units if you can.","breadcrumbs":"Non-Video » DMA Limitations","id":"88","title":"DMA Limitations"},"89":{"body":"","breadcrumbs":"Non-Video » Sound","id":"89","title":"Sound"},"9":{"body":"","breadcrumbs":"Introduction » Help and Resources","id":"9","title":"Help and Resources"},"90":{"body":"","breadcrumbs":"Non-Video » Interrupts","id":"90","title":"Interrupts"},"91":{"body":"","breadcrumbs":"Non-Video » Link Cable","id":"91","title":"Link Cable"},"92":{"body":"","breadcrumbs":"Non-Video » Game Pak","id":"92","title":"Game Pak"},"93":{"body":"","breadcrumbs":"Examples","id":"93","title":"Examples"}},"length":94,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"7":{"df":2,"docs":{"11":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"/":{"2":{"/":{"3":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"46":{"tf":1.7320508075688772},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.0}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"67":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"x":{"0":{"6":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.0}}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"f":{"0":{"0":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"4":{"0":{"0":{"0":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}},"_":{"0":{"0":{"0":{"0":{"df":3,"docs":{"34":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"0":{"df":1,"docs":{"77":{"tf":1.0}}},"2":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":2,"docs":{"68":{"tf":1.0},"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"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":{}},"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"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":{},"f":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"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":{}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"5":{"6":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"46":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}},"1":{"df":1,"docs":{"86":{"tf":1.0}}},"2":{"3":{"4":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"69":{"tf":1.0}}},"df":3,"docs":{"45":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"3":{"df":2,"docs":{"86":{"tf":1.0},"87":{"tf":1.0}}},"4":{"df":3,"docs":{"79":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"5":{"df":5,"docs":{"28":{"tf":1.0},"45":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":11,"docs":{"12":{"tf":1.0},"28":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":11,"docs":{"11":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.7320508075688772},"53":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":2.8284271247461903}},"k":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"2":{".":{"5":{"df":1,"docs":{"12":{"tf":1.0}}},"9":{"b":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"8":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"21":{"tf":1.0}}},"4":{"0":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"0":{"0":{"1":{"df":0,"docs":{},"f":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"e":{"0":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{"c":{"0":{"0":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"6":{"df":3,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"66":{"tf":1.7320508075688772}},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"63":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":2.23606797749979}},"m":{"b":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"/":{"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"24":{"tf":1.0},"52":{"tf":1.0}}},"1":{"df":1,"docs":{"46":{"tf":2.0}}},"2":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}},"df":13,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}},"k":{"df":2,"docs":{"64":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"df":6,"docs":{"20":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.0},"82":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"4":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}}}}},"df":5,"docs":{"25":{"tf":1.7320508075688772},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"86":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"24":{"tf":1.0},"32":{"tf":1.7320508075688772},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"6":{"4":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":3,"docs":{"24":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"7":{"0":{"0":{"df":0,"docs":{},"k":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"8":{"0":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}}}}},"df":9,"docs":{"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}}},"9":{"6":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"9":{"df":1,"docs":{"33":{"tf":1.0}}},"df":1,"docs":{"86":{"tf":1.0}}},"_":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":1,"docs":{"19":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"df":2,"docs":{"18":{"tf":1.0},"45":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"*":{"b":{")":{"*":{"2":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"f":{")":{"*":{"(":{"b":{"*":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"(":{"b":{"*":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}}},"+":{"b":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"/":{"b":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":1,"docs":{"60":{"tf":1.0}},"i":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.0}},"l":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"33":{"tf":1.0},"66":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"24":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"13":{"tf":1.0},"18":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":24,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":5,"docs":{"21":{"tf":1.0},"26":{"tf":1.7320508075688772},"43":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"39":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":21,"docs":{"17":{"tf":1.0},"18":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":3,"docs":{"26":{"tf":1.4142135623730951},"43":{"tf":1.0},"5":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"25":{"tf":1.0},"40":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"69":{"tf":2.0}}}}}}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"27":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"60":{"tf":1.0}}}}}}},"b":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":1.0}}},"df":1,"docs":{"47":{"tf":1.0}}},"h":{"df":1,"docs":{"41":{"tf":1.0}}},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"22":{"tf":1.4142135623730951}},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"17":{"tf":3.3166247903554},"34":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"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":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"43":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"12":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":14,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"25":{"tf":1.0},"52":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":16,"docs":{"12":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"75":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"26":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"12":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"18":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}}}},"r":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"25":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}}}}},"m":{"df":5,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"y":{"df":5,"docs":{"18":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"m":{"!":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"16":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"52":{"tf":1.4142135623730951},"53":{"tf":3.4641016151377544},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"12":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"44":{"tf":2.0},"45":{"tf":2.8284271247461903},"46":{"tf":1.0},"60":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"84":{"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":1,"docs":{"19":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"r":{"0":{"df":1,"docs":{"69":{"tf":1.0}}},"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"43":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":1,"docs":{"43":{"tf":2.449489742783178}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"11":{"tf":1.0},"20":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"*":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"0":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}},":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"66":{"tf":2.23606797749979},"67":{"tf":2.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"d":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"41":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0}}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":12,"docs":{"12":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.7320508075688772},"66":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":2,"docs":{"27":{"tf":1.0},"77":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}},"df":10,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"28":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"53":{"tf":1.0}},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"21":{"tf":1.0},"26":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"21":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"32":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}},"d":{"df":3,"docs":{"55":{"tf":2.6457513110645907},"56":{"tf":1.7320508075688772},"60":{"tf":1.0}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}}},"o":{"df":8,"docs":{"28":{"tf":1.4142135623730951},"52":{"tf":3.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":2.0},"64":{"tf":1.0}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":42,"docs":{"12":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"24":{"tf":1.7320508075688772},"25":{"tf":2.8284271247461903},"26":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"63":{"tf":2.0},"64":{"tf":1.0},"66":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":2.449489742783178},"79":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":3.3166247903554},"87":{"tf":1.7320508075688772},"88":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"26":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":16,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":2.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":2.449489742783178},"28":{"tf":1.0},"3":{"tf":2.6457513110645907},"40":{"tf":2.23606797749979},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"8":{"tf":1.0}}},"l":{"df":5,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":2.0},"77":{"tf":1.0}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"2":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"26":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"37":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"42":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"a":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":8,"docs":{"48":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"g":{"df":1,"docs":{"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":3.3166247903554},"8":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.6457513110645907},"79":{"tf":1.7320508075688772}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"49":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"69":{"tf":2.23606797749979}}}}}},"c":{":":{"\\":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"\\":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"\\":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"\\":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"75":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":22,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"18":{"tf":1.0},"43":{"tf":1.0},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"42":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":3,"docs":{"5":{"tf":2.23606797749979},"6":{"tf":1.0},"7":{"tf":2.6457513110645907}}}},"t":{"df":3,"docs":{"11":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"t":{"<":{"df":0,"docs":{},"z":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"z":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"24":{"tf":2.449489742783178},"25":{"tf":1.0},"27":{"tf":2.6457513110645907},"28":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"s":{"df":7,"docs":{"21":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":4,"docs":{"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":12,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}}}}},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":13,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"22":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"i":{"df":1,"docs":{"5":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":1,"docs":{"21":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":24,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"75":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"$":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"43":{"tf":1.0},"46":{"tf":2.8284271247461903},"67":{"tf":2.449489742783178},"73":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"7":{"tf":1.0}}},"m":{"a":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"8":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":15,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":2.0},"24":{"tf":1.0},"32":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":2.0},"75":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"5":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"2":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"21":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"g":{"b":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"$":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"df":14,"docs":{"17":{"tf":1.0},"23":{"tf":1.7320508075688772},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"45":{"tf":2.8284271247461903},"46":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"45":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"12":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"16":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}},"i":{"df":11,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":2.0},"43":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"$":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"3":{"2":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"18":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"&":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"27":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":11,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"30":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0}}}}},"w":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"'":{"df":1,"docs":{"87":{"tf":1.0}}},"df":4,"docs":{"39":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"53":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"38":{"tf":1.0}}},":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"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":13,"docs":{"17":{"tf":2.0},"18":{"tf":1.0},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":2.0},"44":{"tf":1.4142135623730951},"5":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"0":{".":{"df":4,"docs":{"16":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.7320508075688772}},"o":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"42":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"42":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"12":{"tf":1.0},"17":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"25":{"tf":1.0},"53":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"46":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"22":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"17":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"17":{"tf":1.0},"21":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"43":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":9,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.23606797749979}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.0}}}}}},"i":{"c":{"df":3,"docs":{"53":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"5":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"3":{"tf":1.0},"7":{"tf":3.1622776601683795}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"79":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"10":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"50":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}}},"v":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"27":{"tf":2.23606797749979},"60":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":2.23606797749979},"60":{"tf":2.0}}}}}},"m":{"a":{"0":{"/":{"1":{"/":{"2":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"86":{"tf":1.0}}},"1":{"/":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":8,"docs":{"71":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.0},"87":{"tf":3.7416573867739413},"88":{"tf":2.23606797749979}},"x":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"c":{"df":5,"docs":{"30":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}}}}},"df":11,"docs":{"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"18":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":1.4142135623730951},"56":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"53":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"4":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":9,"docs":{"12":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}}},"w":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"55":{"tf":1.0}}}},"q":{"df":1,"docs":{"86":{"tf":2.0}}}},"s":{"df":1,"docs":{"12":{"tf":1.0}},"i":{"df":1,"docs":{"12":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"h":{"df":22,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"72":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"77":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"17":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.7320508075688772}}},"h":{"df":1,"docs":{"17":{"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":1,"docs":{"53":{"tf":1.0}}}}}}},"f":{"df":2,"docs":{"11":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"18":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"34":{"tf":1.0},"45":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":6,"docs":{"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"q":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"c":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":16,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":6,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"25":{"tf":1.0},"3":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.7320508075688772},"7":{"tf":2.23606797749979},"8":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"27":{"tf":1.0},"41":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"2":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"n":{"df":5,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"42":{"tf":1.0}}}},"s":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"44":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"40":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":3,"docs":{"21":{"tf":1.0},"4":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"f":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"8":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"19":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.0},"7":{"tf":1.0}}}}},"r":{"df":5,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}},"s":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"86":{"tf":1.0}},"e":{">":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"77":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.0},"52":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":6,"docs":{"22":{"tf":2.0},"23":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":3.605551275463989},"27":{"tf":2.449489742783178},"28":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"34":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"30":{"tf":1.0}}}},"w":{"df":5,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"21":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":10,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"7":{"tf":3.1622776601683795}}},"l":{"df":1,"docs":{"1":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"69":{"tf":1.0}}},"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},"3":{"df":1,"docs":{"69":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}}}},"d":{"df":5,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"t":{"df":4,"docs":{"17":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0}}},"x":{"df":7,"docs":{"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"23":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":2.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":2.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":2.0}}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"11":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":2.23606797749979},"26":{"tf":1.0},"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":17,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":2.6457513110645907},"43":{"tf":1.7320508075688772},"60":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"13":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"7":{"tf":1.0}}},"r":{"c":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"7":{"tf":1.7320508075688772}}}},"df":2,"docs":{"17":{"tf":1.0},"26":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"17":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"df":2,"docs":{"77":{"tf":2.0},"78":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"32":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"16":{"tf":1.4142135623730951},"19":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"61":{"tf":2.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":2,"docs":{"71":{"tf":1.0},"8":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"x":{"8":{"_":{"8":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"$":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.0}}}},"df":0,"docs":{},"i":{"1":{"6":{",":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{",":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":3,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.8284271247461903}}},"z":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":7,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.0},"28":{"tf":1.4142135623730951}},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"g":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"0":{"tf":1.0},"47":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":18,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":2.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"'":{"df":4,"docs":{"12":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}},":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":39,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":2.6457513110645907},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":5,"docs":{"12":{"tf":2.23606797749979},"60":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"c":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":7,"docs":{"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"54":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"8":{"tf":1.0}},"n":{"df":4,"docs":{"26":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}},"df":27,"docs":{"12":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":7,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"n":{"a":{"df":4,"docs":{"23":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"d":{"df":8,"docs":{"12":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"5":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"46":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"26":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"61":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"l":{"df":4,"docs":{"27":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}},"r":{"d":{"df":6,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"75":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"15":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"p":{"df":8,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"34":{"tf":1.0}}},"df":20,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0}}}},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"17":{"tf":1.0},"22":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"i":{"'":{"d":{"df":4,"docs":{"16":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"df":8,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0}}},"v":{"df":3,"docs":{"12":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}},"1":{"6":{"df":5,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"69":{"tf":2.449489742783178}}},"df":0,"docs":{}},"3":{"2":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"1":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":3.1622776601683795},"60":{"tf":2.449489742783178}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"a":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":1,"docs":{"79":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"f":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}},"t":{"df":7,"docs":{"23":{"tf":1.0},"26":{"tf":2.23606797749979},"33":{"tf":2.449489742783178},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":2.0}}}},"df":3,"docs":{"30":{"tf":1.0},"43":{"tf":1.7320508075688772},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"66":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}},"o":{"df":4,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"39":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0}}}}},"p":{"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"5":{"tf":2.449489742783178},"7":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":19,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"39":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"43":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}}},"l":{"a":{"c":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"53":{"tf":1.0},"64":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"64":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":2.449489742783178},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"25":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":3,"docs":{"23":{"tf":1.0},"42":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"27":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"o":{"df":4,"docs":{"47":{"tf":1.7320508075688772},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"8":{"tf":1.0}}},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"17":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"52":{"tf":1.0}}}}},"t":{"'":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":34,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.23606797749979},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"3":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"64":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":5,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"0":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":3,"docs":{"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":2.6457513110645907}}}}}}},"p":{"a":{"d":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"24":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":5,"docs":{"17":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":17,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"3":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":2.23606797749979}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"y":{"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"6":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"26":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"25":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"87":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"25":{"tf":2.23606797749979}}}}}},"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":5,"docs":{"11":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"79":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"17":{"tf":2.23606797749979},"20":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":5,"docs":{"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}},"k":{"df":4,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"75":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"39":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"0":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":7,"docs":{"19":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"t":{"df":9,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"21":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"40":{"tf":1.0},"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"p":{"df":3,"docs":{"18":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":7,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"7":{"tf":1.0}}}},"w":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"16":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"25":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":2.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":7,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}}},"df":11,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":3.605551275463989},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"0":{"4":{"0":{"3":{"df":1,"docs":{"35":{"tf":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":{"34":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"12":{"tf":1.0},"35":{"tf":1.4142135623730951},"8":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"0":{"tf":1.0},"16":{"tf":1.7320508075688772},"7":{"tf":1.0},"79":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":26,"docs":{"1":{"tf":1.0},"12":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":1,"docs":{"7":{"tf":1.0}},"i":{"df":8,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"22":{"tf":1.0},"3":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"r":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":4,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":10,"docs":{"12":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"71":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}},"y":{"b":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"11":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"a":{"df":1,"docs":{"43":{"tf":1.0}},"l":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"23":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"g":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"18":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"11":{"tf":1.0},"18":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"3":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"12":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"60":{"tf":1.0}},"e":{"df":12,"docs":{"19":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.0},"7":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"61":{"tf":1.0}},"u":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"12":{"tf":1.0},"42":{"tf":2.0},"64":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"24":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":21,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"27":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"8":{"tf":2.0},"82":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"12":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":3.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"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":2,"docs":{"19":{"tf":1.0},"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":33,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":2.6457513110645907},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"45":{"tf":1.7320508075688772}}}},"df":3,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"w":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.6457513110645907},"6":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"40":{"tf":2.449489742783178},"41":{"tf":2.0},"42":{"tf":2.0},"43":{"tf":2.6457513110645907},"46":{"tf":1.0},"77":{"tf":1.0}},"e":{"!":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"[":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"24":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"17":{"tf":1.0},"24":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"5":{"tf":2.23606797749979}}}}}}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"13":{"tf":1.0},"23":{"tf":1.4142135623730951},"34":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":5,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":2.449489742783178}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"27":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"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":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"14":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"12":{"tf":1.0},"21":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"h":{"df":3,"docs":{"16":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":1.0}}}},"w":{"df":19,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":2.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":2.449489742783178},"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":6,"docs":{"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"47":{"tf":1.0},"69":{"tf":2.449489742783178},"72":{"tf":1.0},"88":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"7":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.0}},"s":{"df":7,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":3,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"86":{"tf":2.23606797749979}}}}}}},"h":{"df":1,"docs":{"23":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"34":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.7320508075688772}},"e":{":":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"12":{"tf":1.0},"2":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"52":{"tf":1.0}}}}},"n":{"c":{"df":18,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"df":24,"docs":{"17":{"tf":2.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":10,"docs":{"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"19":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":7,"docs":{"30":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772}}}}}}},"r":{"d":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"17":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"17":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"1":{"2":{"0":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"69":{"tf":1.0},"87":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"39":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0}}}}}}},"t":{"df":20,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"42":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"18":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":1.0},"16":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"21":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"k":{"df":5,"docs":{"70":{"tf":1.0},"71":{"tf":2.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"l":{"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"66":{"tf":3.4641016151377544},"67":{"tf":2.449489742783178},"72":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"47":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"45":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}}},"t":{"df":21,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":2.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":5,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"46":{"tf":1.0}}},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"40":{"tf":1.7320508075688772},"55":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"2":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"b":{"df":1,"docs":{"69":{"tf":1.0}}},"c":{"df":2,"docs":{"47":{"tf":1.0},"69":{"tf":1.0}}},"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0}}}}},"r":{"df":9,"docs":{"23":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"21":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"*":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":10,"docs":{"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"8":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0}},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"41":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":3,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":2,"docs":{"11":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":2.8284271247461903},"21":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"37":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"3":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"17":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"26":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"28":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.7320508075688772}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.0},"19":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.23606797749979}}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"19":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"24":{"tf":1.0}}}}},"s":{"df":3,"docs":{"77":{"tf":2.449489742783178},"78":{"tf":2.449489742783178},"79":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"8":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"28":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}},"k":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{".":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"52":{"tf":1.0},"75":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"26":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":17,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"22":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":3.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979}},"m":{"df":3,"docs":{"12":{"tf":1.0},"2":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}},"df":5,"docs":{"42":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":16,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":2.449489742783178},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":3.0},"60":{"tf":1.0},"69":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"20":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"22":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"63":{"tf":1.0}}}},"t":{"df":11,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":2.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"85":{"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":1,"docs":{"52":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"r":{"0":{"/":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"}":{"\"":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772}},"}":{"\"":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"3":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"53":{"tf":1.0}}},":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"32":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"w":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"52":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"1":{"5":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"63":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":20,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":2.0},"3":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"35":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":2.23606797749979},"82":{"tf":2.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"i":{"df":3,"docs":{"39":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"7":{"tf":1.4142135623730951},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"1":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":3,"docs":{"12":{"tf":1.0},"46":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":2,"docs":{"17":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"47":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"47":{"tf":2.0},"53":{"tf":3.0},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"79":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"88":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"61":{"tf":1.0},"75":{"tf":1.0}}}},"df":1,"docs":{"17":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"7":{"tf":2.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":3,"docs":{"26":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"a":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"60":{"tf":1.0}}},"df":1,"docs":{"21":{"tf":1.0}}}}},"df":1,"docs":{"26":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":7,"docs":{"21":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":2.0},"87":{"tf":2.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"17":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"6":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"(":{"c":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"86":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"12":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}},"t":{"df":6,"docs":{"17":{"tf":1.4142135623730951},"3":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"39":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}},"f":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"g":{"b":{"!":{"(":{"3":{"1":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"h":{"df":3,"docs":{"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"l":{"df":1,"docs":{"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"df":6,"docs":{"17":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":2.23606797749979},"71":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"41":{"tf":1.0}}}},"w":{"df":1,"docs":{"63":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"23":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}}}},"n":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"18":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":2.0},"7":{"tf":2.23606797749979},"8":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"21":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"34":{"tf":1.0}}},"df":30,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"12":{"tf":2.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"57":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":16,"docs":{"1":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"w":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":1.0}}},"y":{"df":2,"docs":{"19":{"tf":1.0},"75":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"17":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"47":{"tf":2.0},"52":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"m":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0}}},"n":{"df":1,"docs":{"36":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"0":{"df":1,"docs":{"77":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":2.0},"37":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"36":{"tf":2.0},"37":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"23":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"d":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"21":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"t":{"df":12,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"p":{"df":7,"docs":{"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"w":{"df":5,"docs":{"26":{"tf":1.4142135623730951},"3":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":4,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":2.23606797749979},"60":{"tf":2.23606797749979}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"27":{"tf":1.0},"43":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":18,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}}},"t":{"df":2,"docs":{"17":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"21":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":4,"docs":{"23":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"36":{"tf":2.0},"37":{"tf":3.3166247903554},"53":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}},"w":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"21":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":19,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"36":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":12,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":12,"docs":{"17":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":9,"docs":{"52":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"20":{"tf":1.0}}}},"c":{"df":2,"docs":{"12":{"tf":1.0},"52":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"4":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}},"i":{"df":10,"docs":{"21":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"58":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"71":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}}},"c":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"53":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"34":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"17":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"27":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"14":{"tf":1.0},"16":{"tf":1.7320508075688772},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"33":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"16":{"tf":1.0},"6":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"77":{"tf":1.0}}}},"y":{"df":1,"docs":{"33":{"tf":1.0}}}},"d":{"df":3,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"27":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"47":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"19":{"tf":1.0},"53":{"tf":1.0},"86":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":10,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":1,"docs":{"7":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":2.8284271247461903},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"10":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":10,"docs":{"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"df":3,"docs":{"26":{"tf":1.4142135623730951},"40":{"tf":1.0},"7":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"12":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":2.0},"77":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.0},"69":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.7320508075688772},"5":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}}}},"s":{"df":3,"docs":{"23":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.0},"60":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"t":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":7,"docs":{"17":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"0":{".":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"b":{"a":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.23606797749979},"33":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.8284271247461903}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"61":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":9,"docs":{"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":2.6457513110645907},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"1":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.4142135623730951},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"11":{"tf":1.0},"30":{"tf":1.0},"7":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"7":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"26":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0}}}},"t":{"'":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":19,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":2.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"45":{"tf":1.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":32,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":11,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":29,"docs":{"1":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"k":{"df":12,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.7320508075688772},"39":{"tf":1.0},"53":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":5,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"42":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"w":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"53":{"tf":1.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0}},"v":{"4":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":22,"docs":{"12":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":2.0},"54":{"tf":1.4142135623730951},"6":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"r":{"df":2,"docs":{"17":{"tf":1.0},"80":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":14,"docs":{"17":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"61":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"72":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"l":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"69":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":4,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.7320508075688772}}}},"p":{"df":5,"docs":{"12":{"tf":1.7320508075688772},"22":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"43":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"40":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"30":{"tf":1.0},"33":{"tf":2.23606797749979},"40":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"68":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":2.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0}}}}},"df":23,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"35":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":2.0},"86":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"3":{"tf":1.0},"52":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":12,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":26,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":3.3166247903554},"22":{"tf":3.605551275463989},"23":{"tf":2.23606797749979},"24":{"tf":2.6457513110645907},"25":{"tf":2.23606797749979},"26":{"tf":3.0},"27":{"tf":2.0},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":3.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"21":{"tf":2.23606797749979},"25":{"tf":1.0}}}}}}}}},"u":{"1":{"4":{"df":1,"docs":{"21":{"tf":1.0}}},"6":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"0":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"0":{"4":{"0":{"3":{"df":2,"docs":{"34":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":2.8284271247461903},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"8":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"b":{"df":3,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"21":{"tf":2.0}}}}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":7,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":9,"docs":{"20":{"tf":2.0},"21":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"17":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"64":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":8,"docs":{"2":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"60":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"60":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":2.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"44":{"tf":1.0},"60":{"tf":1.0},"86":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":58,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":2.8284271247461903},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":2.449489742783178},"26":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":2.0},"33":{"tf":2.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":3.0},"44":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"5":{"tf":2.8284271247461903},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":2.0},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":2.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"r":{"'":{"df":2,"docs":{"64":{"tf":1.0},"75":{"tf":1.0}}},"df":6,"docs":{"24":{"tf":1.4142135623730951},"35":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":6,"docs":{"19":{"tf":2.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"45":{"tf":3.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"43":{"tf":1.7320508075688772},"52":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"5":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}}}}},"v":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"22":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":31,"docs":{"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"21":{"tf":2.8284271247461903},"22":{"tf":2.23606797749979},"23":{"tf":2.8284271247461903},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":2.8284271247461903},"28":{"tf":2.23606797749979},"32":{"tf":2.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":2.0},"69":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"8":{"tf":1.0},"85":{"tf":2.6457513110645907},"87":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"39":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":2.0},"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"28":{"tf":1.0},"42":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"71":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":6,"docs":{"2":{"tf":1.0},"47":{"tf":2.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"36":{"tf":1.7320508075688772},"37":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"0":{"df":0,"docs":{},"x":{"4":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"34":{"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":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":5,"docs":{"33":{"tf":2.6457513110645907},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":2.0}}},"u":{"1":{"6":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":1,"docs":{"34":{"tf":1.0}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":2.23606797749979}}},"u":{"1":{"6":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":4,"docs":{"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"37":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":2.6457513110645907},"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"18":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"47":{"tf":1.0},"68":{"tf":2.23606797749979},"72":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"70":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"2":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":39,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"y":{"df":16,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"75":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":3,"docs":{"26":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":28,"docs":{"16":{"tf":1.0},"17":{"tf":2.23606797749979},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":2.0},"37":{"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},"5":{"tf":1.7320508075688772},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"r":{"df":13,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"v":{"df":11,"docs":{"18":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":16,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"61":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"5":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":24,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"4":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"p":{"df":6,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"45":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":2.8284271247461903},"35":{"tf":2.0},"38":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"33":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"44":{"tf":1.0}}}}}}},"x":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"5":{"tf":1.7320508075688772},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"19":{"tf":1.0},"32":{"tf":2.23606797749979},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"40":{"tf":1.0},"47":{"tf":1.0}}},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":10,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"75":{"tf":1.0}}}},"r":{"df":22,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":6,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}},"z":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":9,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"7":{"df":2,"docs":{"11":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"/":{"2":{"/":{"3":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"46":{"tf":1.7320508075688772},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.0}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"67":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"x":{"0":{"6":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.0}}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"f":{"0":{"0":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"4":{"0":{"0":{"0":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}},"_":{"0":{"0":{"0":{"0":{"df":3,"docs":{"34":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"0":{"df":1,"docs":{"77":{"tf":1.0}}},"2":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":2,"docs":{"68":{"tf":1.0},"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"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":{}},"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"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":{},"f":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"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":{}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"5":{"6":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"46":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}},"1":{"df":1,"docs":{"86":{"tf":1.0}}},"2":{"3":{"4":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"69":{"tf":1.0}}},"df":3,"docs":{"45":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"3":{"df":2,"docs":{"86":{"tf":1.0},"87":{"tf":1.0}}},"4":{"df":3,"docs":{"79":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"5":{"df":5,"docs":{"28":{"tf":1.0},"45":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":11,"docs":{"12":{"tf":1.0},"28":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":11,"docs":{"11":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.7320508075688772},"53":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":2.8284271247461903}},"k":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"2":{".":{"5":{"df":1,"docs":{"12":{"tf":1.0}}},"9":{"b":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"8":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"21":{"tf":1.0}}},"4":{"0":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"0":{"0":{"1":{"df":0,"docs":{},"f":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"e":{"0":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{"c":{"0":{"0":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"6":{"df":3,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"66":{"tf":1.7320508075688772}},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"63":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":2.23606797749979}},"m":{"b":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"/":{"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"24":{"tf":1.0},"52":{"tf":1.0}}},"1":{"df":1,"docs":{"46":{"tf":2.0}}},"2":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}},"df":13,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}},"k":{"df":2,"docs":{"64":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"df":6,"docs":{"20":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.0},"82":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"4":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}}}}},"df":5,"docs":{"25":{"tf":1.7320508075688772},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"86":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"24":{"tf":1.0},"32":{"tf":1.7320508075688772},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"6":{"4":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":3,"docs":{"24":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"7":{"0":{"0":{"df":0,"docs":{},"k":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"8":{"0":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}}}}},"df":9,"docs":{"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}}},"9":{"6":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"9":{"df":1,"docs":{"33":{"tf":1.0}}},"df":1,"docs":{"86":{"tf":1.0}}},"_":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":1,"docs":{"19":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"df":2,"docs":{"18":{"tf":1.0},"45":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"*":{"b":{")":{"*":{"2":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"f":{")":{"*":{"(":{"b":{"*":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"(":{"b":{"*":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}}},"+":{"b":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"/":{"b":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":1,"docs":{"60":{"tf":1.0}},"i":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.0}},"l":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"33":{"tf":1.0},"66":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"24":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"13":{"tf":1.0},"18":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":24,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":5,"docs":{"21":{"tf":1.0},"26":{"tf":1.7320508075688772},"43":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"39":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":21,"docs":{"17":{"tf":1.0},"18":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"83":{"tf":2.0},"84":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":3,"docs":{"26":{"tf":1.4142135623730951},"43":{"tf":1.0},"5":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"25":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"69":{"tf":2.0}}}}}}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"27":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"60":{"tf":1.0}}}}}}},"b":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":1.0}}},"df":1,"docs":{"47":{"tf":1.0}}},"h":{"df":1,"docs":{"41":{"tf":1.0}}},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"22":{"tf":1.4142135623730951}},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"17":{"tf":3.3166247903554},"34":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"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":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"43":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"12":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":14,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"25":{"tf":1.0},"52":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":16,"docs":{"12":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"75":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"26":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"12":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"18":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}}}},"r":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"25":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}}}}},"m":{"df":5,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"y":{"df":5,"docs":{"18":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"m":{"!":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"16":{"tf":1.4142135623730951},"39":{"tf":2.6457513110645907},"52":{"tf":1.4142135623730951},"53":{"tf":3.605551275463989},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"12":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"44":{"tf":2.23606797749979},"45":{"tf":3.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"84":{"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":1,"docs":{"19":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"r":{"0":{"df":1,"docs":{"69":{"tf":1.0}}},"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"43":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":1,"docs":{"43":{"tf":2.449489742783178}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"11":{"tf":1.0},"20":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"*":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"0":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}},":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"66":{"tf":2.23606797749979},"67":{"tf":2.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"d":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"41":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0}}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":12,"docs":{"12":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.7320508075688772},"66":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":2,"docs":{"27":{"tf":1.0},"77":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}},"df":10,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"28":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"53":{"tf":1.0}},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"21":{"tf":1.0},"26":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"21":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"32":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}},"d":{"df":3,"docs":{"55":{"tf":2.6457513110645907},"56":{"tf":1.7320508075688772},"60":{"tf":1.0}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}}},"o":{"df":8,"docs":{"28":{"tf":1.4142135623730951},"52":{"tf":3.1622776601683795},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":42,"docs":{"12":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"24":{"tf":1.7320508075688772},"25":{"tf":2.8284271247461903},"26":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"63":{"tf":2.0},"64":{"tf":1.0},"66":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":2.449489742783178},"79":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":3.3166247903554},"87":{"tf":1.7320508075688772},"88":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"26":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":16,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":2.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":2.449489742783178},"28":{"tf":1.0},"3":{"tf":2.8284271247461903},"40":{"tf":2.23606797749979},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"8":{"tf":1.0}}},"l":{"df":5,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":2.0},"77":{"tf":1.0}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"2":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"26":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"37":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"42":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"a":{"d":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":8,"docs":{"48":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"g":{"df":1,"docs":{"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":3.3166247903554},"8":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":2.6457513110645907},"79":{"tf":1.7320508075688772}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"49":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"69":{"tf":2.23606797749979}}}}}},"c":{":":{"\\":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"\\":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"\\":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"\\":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"75":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":22,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"18":{"tf":1.0},"43":{"tf":1.0},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"42":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":3,"docs":{"5":{"tf":2.23606797749979},"6":{"tf":1.0},"7":{"tf":2.6457513110645907}}}},"t":{"df":3,"docs":{"11":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"t":{"<":{"df":0,"docs":{},"z":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"z":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"24":{"tf":2.6457513110645907},"25":{"tf":1.0},"27":{"tf":2.6457513110645907},"28":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"s":{"df":7,"docs":{"21":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":4,"docs":{"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":12,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}}}}},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":13,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"22":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"i":{"df":1,"docs":{"5":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.23606797749979},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":1,"docs":{"21":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":24,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"75":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"$":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"43":{"tf":1.0},"46":{"tf":2.8284271247461903},"67":{"tf":2.449489742783178},"73":{"tf":1.4142135623730951}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"7":{"tf":1.0}}},"m":{"a":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"17":{"tf":1.0},"8":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":15,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":2.0},"24":{"tf":1.0},"32":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"5":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":27,"docs":{"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"47":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}},"u":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"2":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"21":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"g":{"b":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"$":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}}},"df":14,"docs":{"17":{"tf":1.0},"23":{"tf":1.7320508075688772},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"45":{"tf":3.0},"46":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"45":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"12":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"16":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}},"i":{"df":11,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":2.0},"43":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"$":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"3":{"2":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"18":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"&":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"27":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":11,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"30":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0}}}}},"w":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"'":{"df":1,"docs":{"87":{"tf":1.0}}},"df":4,"docs":{"39":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"53":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"38":{"tf":1.0}}},":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"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":13,"docs":{"17":{"tf":2.0},"18":{"tf":1.0},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"44":{"tf":1.4142135623730951},"5":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"0":{".":{"df":4,"docs":{"16":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.7320508075688772}},"o":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"42":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"42":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"12":{"tf":1.0},"17":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"25":{"tf":1.0},"53":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"46":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"22":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"17":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"17":{"tf":1.0},"21":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"43":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":9,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"24":{"tf":1.0},"31":{"tf":1.4142135623730951},"7":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":2.23606797749979}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"7":{"tf":1.0}}}}}},"i":{"c":{"df":3,"docs":{"53":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"5":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"3":{"tf":1.0},"7":{"tf":3.1622776601683795}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"79":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"10":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"50":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}}},"v":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"27":{"tf":2.23606797749979},"60":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":2.449489742783178},"60":{"tf":2.23606797749979}}}}}},"m":{"a":{"0":{"/":{"1":{"/":{"2":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"86":{"tf":1.0}}},"1":{"/":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":8,"docs":{"71":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.0},"87":{"tf":3.872983346207417},"88":{"tf":2.449489742783178}},"x":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"c":{"df":5,"docs":{"30":{"tf":1.0},"38":{"tf":1.7320508075688772},"43":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}}}}},"df":11,"docs":{"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"18":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":1.4142135623730951},"56":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"53":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"4":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":9,"docs":{"12":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}}},"w":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"55":{"tf":1.0}}}},"q":{"df":1,"docs":{"86":{"tf":2.0}}}},"s":{"df":1,"docs":{"12":{"tf":1.0}},"i":{"df":1,"docs":{"12":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"h":{"df":22,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"72":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"77":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"17":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.7320508075688772}}},"h":{"df":1,"docs":{"17":{"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":1,"docs":{"53":{"tf":1.0}}}}}}},"f":{"df":2,"docs":{"11":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":2.0},"18":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"34":{"tf":1.0},"45":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":6,"docs":{"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"q":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"c":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":16,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":6,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"25":{"tf":1.0},"3":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":2.0},"7":{"tf":2.23606797749979},"8":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"27":{"tf":1.0},"41":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"2":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"n":{"df":5,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"42":{"tf":1.0}}}},"s":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"44":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"40":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772}}}}},"r":{"a":{"df":3,"docs":{"21":{"tf":1.0},"4":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"f":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"8":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"19":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.0},"7":{"tf":1.0}}}}},"r":{"df":5,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}},"s":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"86":{"tf":1.0}},"e":{">":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"77":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.0},"52":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":6,"docs":{"22":{"tf":2.0},"23":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":3.605551275463989},"27":{"tf":2.449489742783178},"28":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"34":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"30":{"tf":1.0}}}},"w":{"df":5,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"21":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":10,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"7":{"tf":3.1622776601683795}}},"l":{"df":1,"docs":{"1":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"69":{"tf":1.0}}},"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},"3":{"df":1,"docs":{"69":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}}}},"d":{"df":5,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"t":{"df":4,"docs":{"17":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0}}},"x":{"df":7,"docs":{"20":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"23":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":2.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":2.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":2.0}}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"11":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":2.23606797749979},"26":{"tf":1.0},"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":17,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":2.6457513110645907},"43":{"tf":1.7320508075688772},"60":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"13":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"7":{"tf":1.0}}},"r":{"c":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"7":{"tf":1.7320508075688772}}}},"df":2,"docs":{"17":{"tf":1.0},"26":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"17":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"df":2,"docs":{"77":{"tf":2.0},"78":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"32":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"16":{"tf":1.4142135623730951},"19":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":2.23606797749979},"69":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":2,"docs":{"71":{"tf":1.0},"8":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"x":{"8":{"_":{"8":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"$":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.0}}}},"df":0,"docs":{},"i":{"1":{"6":{",":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{",":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":3,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.8284271247461903}}},"z":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":7,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.0},"28":{"tf":1.4142135623730951}},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"g":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"0":{"tf":1.0},"47":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":18,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":2.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"'":{"df":4,"docs":{"12":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}},":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":39,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":2.6457513110645907},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":5,"docs":{"12":{"tf":2.23606797749979},"60":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"c":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":7,"docs":{"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"54":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"8":{"tf":1.0}},"n":{"df":4,"docs":{"26":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.7320508075688772}}}},"df":27,"docs":{"12":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":7,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"n":{"a":{"df":4,"docs":{"23":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"d":{"df":8,"docs":{"12":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"5":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"46":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"26":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"61":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"l":{"df":4,"docs":{"27":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}},"r":{"d":{"df":6,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"75":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"15":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"8":{"tf":1.7320508075688772}}}},"p":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"34":{"tf":1.0}}},"df":20,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0}}}},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"17":{"tf":1.0},"22":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"i":{"'":{"d":{"df":4,"docs":{"16":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"df":8,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0}}},"v":{"df":3,"docs":{"12":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}},"1":{"6":{"df":5,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"69":{"tf":2.449489742783178}}},"df":0,"docs":{}},"3":{"2":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"1":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":3.1622776601683795},"60":{"tf":2.449489742783178}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"a":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":1,"docs":{"79":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"f":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}},"t":{"df":7,"docs":{"23":{"tf":1.0},"26":{"tf":2.23606797749979},"33":{"tf":2.449489742783178},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":2.0}}}},"df":3,"docs":{"30":{"tf":1.0},"43":{"tf":1.7320508075688772},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"66":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}},"o":{"df":4,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"39":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.6457513110645907}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0}}}}},"p":{"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.23606797749979},"79":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"5":{"tf":2.449489742783178},"7":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":19,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"39":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"43":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}}},"l":{"a":{"c":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"53":{"tf":1.0},"64":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"64":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":2.6457513110645907},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"v":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":2.449489742783178}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"25":{"tf":1.0}},"t":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":3,"docs":{"23":{"tf":1.0},"42":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"27":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"o":{"df":4,"docs":{"47":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"8":{"tf":1.0}}},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"17":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"52":{"tf":1.0}}}}},"t":{"'":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":34,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.23606797749979},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"3":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":2.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":5,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"0":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":3,"docs":{"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":2.6457513110645907}}}}}}},"p":{"a":{"d":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"24":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":5,"docs":{"17":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":17,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"3":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":2.23606797749979}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"y":{"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"6":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"26":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"25":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"87":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"25":{"tf":2.23606797749979}}}}}},"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":5,"docs":{"11":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"79":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"17":{"tf":2.449489742783178},"20":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"87":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":5,"docs":{"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}},"k":{"df":4,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"75":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"39":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"0":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":7,"docs":{"19":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"t":{"df":9,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"21":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"40":{"tf":1.0},"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"p":{"df":3,"docs":{"18":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":7,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"7":{"tf":1.0}}}},"w":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"16":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"25":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":2.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":7,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}}},"df":11,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":3.7416573867739413},"43":{"tf":1.7320508075688772},"45":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"0":{"4":{"0":{"3":{"df":1,"docs":{"35":{"tf":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":{"34":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"12":{"tf":1.0},"35":{"tf":1.4142135623730951},"8":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"0":{"tf":1.0},"16":{"tf":1.7320508075688772},"7":{"tf":1.0},"79":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":26,"docs":{"1":{"tf":1.0},"12":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":1,"docs":{"7":{"tf":1.0}},"i":{"df":8,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"22":{"tf":1.0},"3":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"r":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":4,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":10,"docs":{"12":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"71":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}},"y":{"b":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"11":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"a":{"df":1,"docs":{"43":{"tf":1.0}},"l":{"df":2,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"23":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"g":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"18":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"11":{"tf":1.0},"18":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"3":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"12":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"60":{"tf":1.0}},"e":{"df":12,"docs":{"19":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.0},"7":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"61":{"tf":1.0}},"u":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"12":{"tf":1.0},"42":{"tf":2.0},"64":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"24":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":21,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"27":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":2.0},"28":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"8":{"tf":2.0},"82":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"12":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":3.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"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":2,"docs":{"19":{"tf":1.0},"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":33,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":2.6457513110645907},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"45":{"tf":1.7320508075688772}}}},"df":3,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"w":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.6457513110645907},"6":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"40":{"tf":2.6457513110645907},"41":{"tf":2.23606797749979},"42":{"tf":2.0},"43":{"tf":2.6457513110645907},"46":{"tf":1.0},"77":{"tf":1.0}},"e":{"!":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"[":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"24":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"17":{"tf":1.0},"24":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"5":{"tf":2.23606797749979}}}}}}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"13":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"34":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"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}},"e":{"df":5,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":2.449489742783178}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"27":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"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":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"14":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"12":{"tf":1.0},"21":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"h":{"df":3,"docs":{"16":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":1.0}}}},"w":{"df":19,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":2.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":2.449489742783178},"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":6,"docs":{"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"47":{"tf":1.0},"69":{"tf":2.6457513110645907},"72":{"tf":1.0},"88":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.0}},"s":{"df":7,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":3,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"86":{"tf":2.23606797749979}}}}}}},"h":{"df":1,"docs":{"23":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"34":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.7320508075688772}},"e":{":":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"12":{"tf":1.0},"2":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"52":{"tf":1.0}}}}},"n":{"c":{"df":18,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"df":24,"docs":{"17":{"tf":2.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":10,"docs":{"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"19":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":7,"docs":{"30":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":2.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772}}}}}}},"r":{"d":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"17":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"17":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"1":{"2":{"0":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"69":{"tf":1.0},"87":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"39":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0}}}}}}},"t":{"df":20,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"42":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"18":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":1.0},"16":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"21":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"k":{"df":5,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":2.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"l":{"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"66":{"tf":3.605551275463989},"67":{"tf":2.449489742783178},"72":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"47":{"tf":1.0},"66":{"tf":2.0},"68":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"17":{"tf":1.0},"18":{"tf":2.0},"45":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}}},"t":{"df":21,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":2.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":5,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"46":{"tf":1.0}}},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"40":{"tf":1.7320508075688772},"55":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"2":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"b":{"df":1,"docs":{"69":{"tf":1.0}}},"c":{"df":2,"docs":{"47":{"tf":1.0},"69":{"tf":1.0}}},"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0}}}}},"r":{"df":9,"docs":{"23":{"tf":1.0},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"21":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"*":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":10,"docs":{"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"8":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0}},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"41":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":3,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":2,"docs":{"11":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":2.8284271247461903},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"37":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"3":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"17":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"26":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"28":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.7320508075688772}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.0},"19":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.23606797749979}}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"19":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"24":{"tf":1.0}}}}},"s":{"df":3,"docs":{"77":{"tf":2.449489742783178},"78":{"tf":2.6457513110645907},"79":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"8":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"28":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}},"k":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{".":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"52":{"tf":1.0},"75":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"26":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":17,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"22":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":3.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979}},"m":{"df":3,"docs":{"12":{"tf":1.0},"2":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}},"df":5,"docs":{"42":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":16,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":2.449489742783178},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":3.0},"60":{"tf":1.0},"69":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"20":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"22":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"63":{"tf":1.0}}}},"t":{"df":11,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":2.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"85":{"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":1,"docs":{"52":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":34,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"r":{"0":{"/":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"}":{"\"":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772}},"}":{"\"":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"3":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"53":{"tf":1.0}}},":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"32":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"w":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"52":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"1":{"5":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"63":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":20,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":2.0},"3":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"35":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":2.23606797749979},"82":{"tf":2.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"i":{"df":3,"docs":{"39":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"7":{"tf":1.4142135623730951},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"1":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":3,"docs":{"12":{"tf":1.0},"46":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":2,"docs":{"17":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"47":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"47":{"tf":2.0},"53":{"tf":3.0},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"79":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"88":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"61":{"tf":1.0},"75":{"tf":1.0}}}},"df":1,"docs":{"17":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"7":{"tf":2.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":3,"docs":{"26":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"a":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"60":{"tf":1.0}}},"df":1,"docs":{"21":{"tf":1.0}}}}},"df":1,"docs":{"26":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":7,"docs":{"21":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":2.0},"87":{"tf":2.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"17":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"6":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"(":{"c":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"86":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"12":{"tf":2.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}},"t":{"df":6,"docs":{"17":{"tf":1.4142135623730951},"3":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"39":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}},"f":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"g":{"b":{"!":{"(":{"3":{"1":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"h":{"df":3,"docs":{"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"l":{"df":1,"docs":{"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"df":6,"docs":{"17":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":2.8284271247461903},"71":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"41":{"tf":1.0}}}},"w":{"df":1,"docs":{"63":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"23":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}}}},"n":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"18":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":2.0},"7":{"tf":2.23606797749979},"8":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"21":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"34":{"tf":1.0}}},"df":30,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"57":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":16,"docs":{"1":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"w":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":1.0}}},"y":{"df":2,"docs":{"19":{"tf":1.0},"75":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"17":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"47":{"tf":2.0},"52":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"m":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0}}},"n":{"df":1,"docs":{"36":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"0":{"df":1,"docs":{"77":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":2.0},"37":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"36":{"tf":2.0},"37":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"23":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"d":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"21":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"t":{"df":12,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"p":{"df":7,"docs":{"39":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":2.23606797749979},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"w":{"df":5,"docs":{"26":{"tf":1.4142135623730951},"3":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":4,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":2.23606797749979},"60":{"tf":2.23606797749979}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"27":{"tf":1.0},"43":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":18,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}}},"t":{"df":2,"docs":{"17":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"21":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":4,"docs":{"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"36":{"tf":2.0},"37":{"tf":3.3166247903554},"53":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}},"w":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"21":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":19,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"36":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"c":{"df":12,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":12,"docs":{"17":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":9,"docs":{"52":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"20":{"tf":1.0}}}},"c":{"df":2,"docs":{"12":{"tf":1.0},"52":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"4":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951}},"i":{"df":10,"docs":{"21":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"58":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"71":{"tf":2.6457513110645907},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}}},"c":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"53":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"34":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"17":{"tf":2.6457513110645907},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"27":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"14":{"tf":1.0},"16":{"tf":1.7320508075688772},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"33":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"16":{"tf":1.0},"6":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"77":{"tf":1.0}}}},"y":{"df":1,"docs":{"33":{"tf":1.0}}}},"d":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"27":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"47":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"19":{"tf":1.0},"53":{"tf":1.0},"86":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":10,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":1,"docs":{"7":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":2.8284271247461903},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"10":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":10,"docs":{"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951},"42":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"df":3,"docs":{"26":{"tf":1.4142135623730951},"40":{"tf":1.0},"7":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"12":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":2.0},"77":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.0},"69":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.7320508075688772},"5":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}}}},"s":{"df":3,"docs":{"23":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.0},"60":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"t":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":7,"docs":{"17":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"0":{".":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"b":{"a":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.23606797749979},"33":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.8284271247461903}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"61":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":9,"docs":{"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":2.6457513110645907},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"1":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.4142135623730951},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"11":{"tf":1.0},"30":{"tf":1.0},"7":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"7":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"26":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0}}}},"t":{"'":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":19,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":2.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"45":{"tf":1.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":32,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":11,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":29,"docs":{"1":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"k":{"df":12,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.7320508075688772},"39":{"tf":1.0},"53":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":5,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"42":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"w":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"53":{"tf":1.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0}},"v":{"4":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":22,"docs":{"12":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":2.0},"54":{"tf":1.4142135623730951},"6":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"r":{"df":2,"docs":{"17":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":14,"docs":{"17":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"61":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"72":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"l":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"69":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":4,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.7320508075688772}}}},"p":{"df":5,"docs":{"12":{"tf":1.7320508075688772},"22":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"43":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"40":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"30":{"tf":1.0},"33":{"tf":2.23606797749979},"40":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"68":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":2.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0}}}}},"df":23,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"35":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":2.0},"86":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"3":{"tf":1.0},"52":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":12,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":26,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":3.3166247903554},"22":{"tf":3.605551275463989},"23":{"tf":2.23606797749979},"24":{"tf":2.6457513110645907},"25":{"tf":2.23606797749979},"26":{"tf":3.0},"27":{"tf":2.0},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":3.1622776601683795},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"21":{"tf":2.23606797749979},"25":{"tf":1.0}}}}}}}}},"u":{"1":{"4":{"df":1,"docs":{"21":{"tf":1.0}}},"6":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"0":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"0":{"4":{"0":{"3":{"df":2,"docs":{"34":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":2.8284271247461903},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"8":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"b":{"df":3,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"21":{"tf":2.0}}}}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":7,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":9,"docs":{"20":{"tf":2.0},"21":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"17":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"64":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":8,"docs":{"2":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"60":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"60":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":2.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"44":{"tf":1.0},"60":{"tf":1.0},"86":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":58,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":2.8284271247461903},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":2.449489742783178},"26":{"tf":2.0},"30":{"tf":1.7320508075688772},"32":{"tf":2.0},"33":{"tf":2.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":3.0},"44":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"5":{"tf":2.8284271247461903},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":2.0},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":2.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"r":{"'":{"df":2,"docs":{"64":{"tf":1.0},"75":{"tf":1.0}}},"df":6,"docs":{"24":{"tf":1.4142135623730951},"35":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":6,"docs":{"19":{"tf":2.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"45":{"tf":3.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"43":{"tf":1.7320508075688772},"52":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"5":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}}}}},"v":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"22":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":31,"docs":{"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"21":{"tf":3.0},"22":{"tf":2.23606797749979},"23":{"tf":3.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":2.8284271247461903},"28":{"tf":2.23606797749979},"32":{"tf":2.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":2.0},"69":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"8":{"tf":1.0},"85":{"tf":2.6457513110645907},"87":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"39":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":2.0},"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"28":{"tf":1.0},"42":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"71":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":24,"docs":{"2":{"tf":1.0},"47":{"tf":2.0},"68":{"tf":1.7320508075688772},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"36":{"tf":1.7320508075688772},"37":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"0":{"df":0,"docs":{},"x":{"4":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"34":{"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":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":5,"docs":{"33":{"tf":2.6457513110645907},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":2.0}}},"u":{"1":{"6":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":1,"docs":{"34":{"tf":1.0}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":2.23606797749979}}},"u":{"1":{"6":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"33":{"tf":1.7320508075688772},"34":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"37":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":2.6457513110645907},"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"18":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":2.0},"39":{"tf":2.449489742783178},"40":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"47":{"tf":1.0},"68":{"tf":2.449489742783178},"72":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"70":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"2":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":39,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"y":{"df":16,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"75":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":3,"docs":{"26":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":28,"docs":{"16":{"tf":1.0},"17":{"tf":2.23606797749979},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":2.0},"37":{"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},"5":{"tf":1.7320508075688772},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"r":{"df":13,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"v":{"df":11,"docs":{"18":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":16,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"61":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"5":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":24,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"4":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"p":{"df":6,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"45":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":2.8284271247461903},"35":{"tf":2.0},"38":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"33":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"44":{"tf":1.0}}}}}}},"x":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"5":{"tf":1.7320508075688772},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"19":{"tf":1.0},"32":{"tf":2.23606797749979},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"40":{"tf":1.0},"47":{"tf":1.0}}},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":10,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"75":{"tf":1.0}}}},"r":{"df":22,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":6,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}},"z":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":9,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":3,"docs":{"39":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"16":{"tf":1.0},"18":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":4,"docs":{"52":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"48":{"tf":1.0}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"c":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":1,"docs":{"45":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"79":{"tf":1.0},"86":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"31":{"tf":1.0},"84":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"28":{"tf":1.0},"60":{"tf":1.0}}}}}},"m":{"a":{"df":3,"docs":{"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"o":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"60":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"70":{"tf":1.0},"92":{"tf":1.0}}}}},"b":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"8":{"tf":1.0}}}},"p":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"79":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":1,"docs":{"65":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"77":{"tf":1.0},"79":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"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":1,"docs":{"27":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}},"w":{"df":1,"docs":{"78":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"75":{"tf":1.0}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"70":{"tf":1.0},"92":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"1":{"5":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"77":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"12":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":2,"docs":{"30":{"tf":1.0},"35":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":3,"docs":{"68":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}}}},"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}; \ No newline at end of file diff --git a/docs/searchindex.json b/docs/searchindex.json deleted file mode 100644 index c435c2e..0000000 --- a/docs/searchindex.json +++ /dev/null @@ -1 +0,0 @@ -{"doc_urls":["00-introduction/00-index.html#introduction","00-introduction/00-index.html#feedback","00-introduction/01-requirements.html#reader-requirements","00-introduction/02-goals_and_style.html#book-goals-and-style","00-introduction/03-development-setup.html#development-setup","00-introduction/03-development-setup.html#per-system-setup","00-introduction/03-development-setup.html#per-project-setup","00-introduction/03-development-setup.html#compiling","00-introduction/04-hello-magic.html#hello-magic","00-introduction/05-help_and_resources.html#help-and-resources","00-introduction/05-help_and_resources.html#help","00-introduction/05-help_and_resources.html#emulators","00-introduction/05-help_and_resources.html#information-resources","00-introduction/05-help_and_resources.html#non-rust-gba-community","01-quirks/00-index.html#quirks","01-quirks/01-no_std.html#no-std","01-quirks/01-no_std.html#bare-metal","01-quirks/01-no_std.html#no-standard-library","01-quirks/01-no_std.html#bare-metal-panic","01-quirks/01-no_std.html#llvm-intrinsics","01-quirks/02-fixed_only.html#fixed-only","01-quirks/02-fixed_only.html#representing-a-fixed-point-value","01-quirks/02-fixed_only.html#a-struct-for-fixed-point","01-quirks/02-fixed_only.html#constructing-a-fixed-point-value","01-quirks/02-fixed_only.html#casting-base-values","01-quirks/02-fixed_only.html#adjusting-fractional-part","01-quirks/02-fixed_only.html#addition-subtraction-shifting-negative-comparisons","01-quirks/02-fixed_only.html#multiplication","01-quirks/02-fixed_only.html#division","01-quirks/02-fixed_only.html#trigonometry","01-quirks/02-fixed_only.html#just-using-a-crate","01-quirks/03-volatile_destination.html#volatile-destination","01-quirks/03-volatile_destination.html#volatile-memory","01-quirks/03-volatile_destination.html#constructing-the-voladdress-type","01-quirks/03-volatile_destination.html#constructing-a-voladdress-value","01-quirks/03-volatile_destination.html#using-a-voladdress-value","01-quirks/03-volatile_destination.html#voladdress-iteration","01-quirks/03-volatile_destination.html#voladdressblock","01-quirks/03-volatile_destination.html#docs","01-quirks/03-volatile_destination.html#volatile-asm","01-quirks/04-newtype.html#newtype","01-quirks/04-newtype.html#newtype-basics","01-quirks/04-newtype.html#making-it-a-macro","01-quirks/04-newtype.html#upgrade-that-macro","01-quirks/05-const_asserts.html#constant-assertions","01-quirks/05-const_asserts.html#how-we-const-assert","01-quirks/05-const_asserts.html#asserting-something","02-concepts/00-index.html#broad-concepts","02-concepts/00-index.html#bus-size","02-concepts/00-index.html#minimum-write-size","02-concepts/00-index.html#volatile-or-not","02-concepts/01-cpu.html#cpu","02-concepts/02-bios.html#bios","02-concepts/02-bios.html#inline-asm","02-concepts/02-bios.html#assembly","02-concepts/02-bios.html#outputs","02-concepts/02-bios.html#inputs","02-concepts/02-bios.html#clobbers","02-concepts/02-bios.html#options","02-concepts/02-bios.html#bios-asm","02-concepts/02-bios.html#example-bios-function-division","02-concepts/02-bios.html#specific-bios-functions","02-concepts/03-wram.html#work-ram","02-concepts/03-wram.html#external-work-ram-ewram","02-concepts/03-wram.html#internal-work-ram-iwram","02-concepts/04-io-registers.html#io-registers","02-concepts/05-palram.html#palette-ram-palram","02-concepts/05-palram.html#transparency","02-concepts/06-vram.html#video-ram-vram","02-concepts/07-oam.html#object-attribute-memory-oam","02-concepts/08-rom.html#game-pak-rom--flash-rom-rom","02-concepts/09-sram.html#save-ram-sram","03-video/00-index.html#video","03-video/01-rgb15.html#rbg15-color","03-video/TODO.html#todo","04-non-video/00-index.html#non-video","04-non-video/01-buttons.html#buttons","04-non-video/01-buttons.html#key-input-register","04-non-video/01-buttons.html#detecting-new-presses","04-non-video/01-buttons.html#key-interrupt-control","04-non-video/02-timers.html#timers","04-non-video/03-dma.html#direct-memory-access","04-non-video/03-dma.html#general-dma","04-non-video/03-dma.html#source-address","04-non-video/03-dma.html#destination-address","04-non-video/03-dma.html#count","04-non-video/03-dma.html#control","04-non-video/03-dma.html#dma-life-cycle","04-non-video/03-dma.html#dma-limitations","04-non-video/04-sound.html#sound","04-non-video/05-interrupts.html#interrupts","04-non-video/06-link_cable.html#link-cable","04-non-video/07-game_pak.html#game-pak","05-examples/00-index.html#examples"],"index":{"documentStore":{"docInfo":{"0":{"body":35,"breadcrumbs":1,"title":1},"1":{"body":44,"breadcrumbs":1,"title":1},"10":{"body":32,"breadcrumbs":2,"title":1},"11":{"body":46,"breadcrumbs":2,"title":1},"12":{"body":205,"breadcrumbs":3,"title":2},"13":{"body":27,"breadcrumbs":5,"title":4},"14":{"body":27,"breadcrumbs":1,"title":1},"15":{"body":43,"breadcrumbs":2,"title":1},"16":{"body":97,"breadcrumbs":3,"title":2},"17":{"body":274,"breadcrumbs":3,"title":2},"18":{"body":114,"breadcrumbs":4,"title":3},"19":{"body":113,"breadcrumbs":3,"title":2},"2":{"body":102,"breadcrumbs":3,"title":2},"20":{"body":135,"breadcrumbs":2,"title":1},"21":{"body":225,"breadcrumbs":5,"title":4},"22":{"body":174,"breadcrumbs":4,"title":3},"23":{"body":166,"breadcrumbs":5,"title":4},"24":{"body":132,"breadcrumbs":4,"title":3},"25":{"body":183,"breadcrumbs":4,"title":3},"26":{"body":313,"breadcrumbs":6,"title":5},"27":{"body":265,"breadcrumbs":2,"title":1},"28":{"body":187,"breadcrumbs":2,"title":1},"29":{"body":5,"breadcrumbs":2,"title":1},"3":{"body":109,"breadcrumbs":4,"title":3},"30":{"body":42,"breadcrumbs":3,"title":2},"31":{"body":6,"breadcrumbs":3,"title":2},"32":{"body":122,"breadcrumbs":3,"title":2},"33":{"body":185,"breadcrumbs":4,"title":3},"34":{"body":97,"breadcrumbs":4,"title":3},"35":{"body":87,"breadcrumbs":4,"title":3},"36":{"body":89,"breadcrumbs":3,"title":2},"37":{"body":140,"breadcrumbs":2,"title":1},"38":{"body":12,"breadcrumbs":2,"title":1},"39":{"body":140,"breadcrumbs":3,"title":2},"4":{"body":24,"breadcrumbs":3,"title":2},"40":{"body":93,"breadcrumbs":2,"title":1},"41":{"body":84,"breadcrumbs":3,"title":2},"42":{"body":165,"breadcrumbs":3,"title":2},"43":{"body":240,"breadcrumbs":3,"title":2},"44":{"body":63,"breadcrumbs":3,"title":2},"45":{"body":164,"breadcrumbs":3,"title":2},"46":{"body":90,"breadcrumbs":3,"title":2},"47":{"body":119,"breadcrumbs":2,"title":2},"48":{"body":2,"breadcrumbs":2,"title":2},"49":{"body":8,"breadcrumbs":3,"title":3},"5":{"body":148,"breadcrumbs":4,"title":3},"50":{"body":9,"breadcrumbs":1,"title":1},"51":{"body":0,"breadcrumbs":2,"title":1},"52":{"body":165,"breadcrumbs":2,"title":1},"53":{"body":224,"breadcrumbs":3,"title":2},"54":{"body":72,"breadcrumbs":2,"title":1},"55":{"body":79,"breadcrumbs":2,"title":1},"56":{"body":42,"breadcrumbs":2,"title":1},"57":{"body":41,"breadcrumbs":2,"title":1},"58":{"body":29,"breadcrumbs":2,"title":1},"59":{"body":57,"breadcrumbs":3,"title":2},"6":{"body":80,"breadcrumbs":4,"title":3},"60":{"body":125,"breadcrumbs":5,"title":4},"61":{"body":47,"breadcrumbs":4,"title":3},"62":{"body":0,"breadcrumbs":3,"title":2},"63":{"body":80,"breadcrumbs":5,"title":4},"64":{"body":46,"breadcrumbs":5,"title":4},"65":{"body":4,"breadcrumbs":3,"title":2},"66":{"body":176,"breadcrumbs":4,"title":3},"67":{"body":96,"breadcrumbs":2,"title":1},"68":{"body":118,"breadcrumbs":4,"title":3},"69":{"body":210,"breadcrumbs":5,"title":4},"7":{"body":457,"breadcrumbs":2,"title":1},"70":{"body":68,"breadcrumbs":7,"title":6},"71":{"body":86,"breadcrumbs":4,"title":3},"72":{"body":44,"breadcrumbs":1,"title":1},"73":{"body":0,"breadcrumbs":3,"title":2},"74":{"body":0,"breadcrumbs":2,"title":1},"75":{"body":106,"breadcrumbs":2,"title":2},"76":{"body":13,"breadcrumbs":3,"title":1},"77":{"body":184,"breadcrumbs":5,"title":3},"78":{"body":60,"breadcrumbs":5,"title":3},"79":{"body":89,"breadcrumbs":5,"title":3},"8":{"body":182,"breadcrumbs":3,"title":2},"80":{"body":0,"breadcrumbs":3,"title":1},"81":{"body":39,"breadcrumbs":5,"title":3},"82":{"body":50,"breadcrumbs":4,"title":2},"83":{"body":22,"breadcrumbs":4,"title":2},"84":{"body":33,"breadcrumbs":4,"title":2},"85":{"body":83,"breadcrumbs":3,"title":1},"86":{"body":169,"breadcrumbs":3,"title":1},"87":{"body":155,"breadcrumbs":5,"title":3},"88":{"body":47,"breadcrumbs":4,"title":2},"89":{"body":0,"breadcrumbs":3,"title":1},"9":{"body":0,"breadcrumbs":3,"title":2},"90":{"body":0,"breadcrumbs":3,"title":1},"91":{"body":0,"breadcrumbs":4,"title":2},"92":{"body":0,"breadcrumbs":4,"title":2},"93":{"body":0,"breadcrumbs":1,"title":1}},"docs":{"0":{"body":"This is the book for learning how to write GameBoy Advance (GBA) games in Rust. I'm Lokathor , the main author of the book. There's also Ketsuban who provides the technical advisement, reviews the PRs, and keeps my crazy in check. The book is a work in progress, as you can see if you actually try to open many of the pages listed in the Table Of Contents.","breadcrumbs":"Introduction","id":"0","title":"Introduction"},"1":{"body":"It's very often hard to tell when you've explained something properly. In the same way that your brain will read over small misspellings and correct things into the right word, if an explanation for something you already understand accidentally skips over some small detail then your brain can fill in the gaps without you realizing it. Please , if things don't make sense then file an issue about it so I know where things need to improve.","breadcrumbs":"Feedback","id":"1","title":"Feedback"},"10":{"body":"So you're stuck on a problem and the book doesn't say what to do. Where can you find out more? The first place I would suggest is the Rust Community Discord . If it's a general Rust question then you can ask anyone in any channel you feel is appropriate. If it's GBA specific then you can try asking me ( Lokathor ) or Ketsuban in the #gamedev channel.","breadcrumbs":"Introduction » Help","id":"10","title":"Help"},"11":{"body":"You certainly might want to eventually write a game that you can put on a flash cart and play on real hardware, but for most of your development you'll probably want to be using an emulator for testing, because you don't have to fiddle with cables and all that. In terms of emulators, you want to be using mGBA , and you want to be using the 0.7 Beta 1 or later. This update lets you run raw ELF files, which means that you can have full debug symbols available while you're debugging problems.","breadcrumbs":"Introduction » Emulators","id":"11","title":"Emulators"},"12":{"body":"First, if I fail to describe something related to Rust, you can always try checking in The Rust Reference to see if they cover it. You can mostly ignore that big scary red banner at the top, things are a lot better documented than they make it sound. If you need help trying to fiddle your math down as hard as you can, there are resources such as the Bit Twiddling Hacks page. As to GBA related lore, Ketsuban and I didn't magically learn this all from nowhere, we read various technical manuals and guides ourselves and then distilled those works oriented around C and C++ into a book for Rust. We have personally used some or all of the following: GBATEK : This is the resource. It covers not only the GBA, but also the DS and DSi, and also a run down of ARM assembly (32-bit and 16-bit opcodes). The link there is to the 2.9b version on problemkaputt.de (the official home of the document), but if you just google for gbatek the top result is for the 2.5 version on akkit.org , so make sure you're looking at the newest version. Sometimes problemkaputt.de is a little sluggish so I've also mirrored the 2.9b version on my own site as well. GBATEK is rather large, over 2mb of text, so if you're on a phone or similar you might want to save an offline copy to go easy on your data usage. TONC : While GBATEK is basically just a huge tech specification, TONC is an actual guide on how to make sense of the GBA's abilities and organize it into a game. It's written for C of course, but as a Rust programmer you should always be practicing your ability to read C code anyway. It's the programming equivalent of learning Latin because all the old academic books are written in Latin. CowBite : This is more like GBATEK, and it's less complete, but it mixes in a little more friendly explanation of things in between the hardware spec parts. And I haven't had time to look at it myself, The Audio Advance seems to be very good. It explains in depth how you can get audio working on the GBA. Note that the table of contents for each page goes along the top instead of down the side.","breadcrumbs":"Introduction » Information Resources","id":"12","title":"Information Resources"},"13":{"body":"There's also the GBADev.org site, which has a forum and everything. They're coding in C and C++, but you can probably overcome that difference with a little work on your part. I also found a place called GBATemp , which seems to have a more active forum but less of a focus on actual coding.","breadcrumbs":"Introduction » Non-Rust GBA Community","id":"13","title":"Non-Rust GBA Community"},"14":{"body":"The GBA supports a lot of totally normal Rust code exactly like you'd think. However, it also is missing a lot of what you might expect, and sometimes we have to do things in slightly weird ways. We start the book by covering the quirks our code will have, just to avoid too many surprises later.","breadcrumbs":"Quirks","id":"14","title":"Quirks"},"15":{"body":"First up, as you already saw in the hello_magic code, we have to use the #![no_std] outer attribute on our program when we target the GBA. You can find some info about no_std in two official sources: unstable book section embedded book section The unstable book is borderline useless here because it's describing too many things in too many words. The embedded book is much better, but still fairly terse.","breadcrumbs":"Quirks » No Std","id":"15","title":"No Std"},"16":{"body":"The GBA falls under what the Embedded Book calls \"Bare Metal Environments\". Basically, the machine powers on and immediately begins executing some ASM code. Our ASM startup was provided by Ketsuban (check the crt0.s file). We'll go over how it works much later on, for now it's enough to know that it does work, and eventually control passes into Rust code. On the rust code side of things, we determine our starting point with the #[start] attribute on our main function. The main function also has a specific type signature that's different from the usual main that you'd see in Rust. I'd tell you to read the unstable-book entry on #[start] but they literally just tell you to look at the tracking issue for it instead, and that's not very helpful either. Basically it just has to be declared the way it is, even though there's nothing passing in the arguments and there's no place that the return value will go. The compiler won't accept it any other way.","breadcrumbs":"Quirks » Bare Metal","id":"16","title":"Bare Metal"},"17":{"body":"The Embedded Book tells us that we can't use the standard library, but we get access to something called \"libcore\", which sounds kinda funny. What they're talking about is just the core crate , which is called libcore within the rust repository for historical reasons. The core crate is actually still a really big portion of Rust. The standard library doesn't actually hold too much code (relatively speaking), instead it just takes code form other crates and then re-exports it in an organized way. So with just core instead of std , what are we missing? In no particular order: Allocation Clock Network File System The allocation system and all the types that you can use if you have a global allocator are neatly packaged up in the alloc crate. The rest isn't as nicely organized. It's possible to implement a fair portion of the entire standard library within a GBA context and make the rest just panic if you try to use it. However, do you really need all that? Eh... probably not? We don't need a file system, because all of our data is just sitting there in the ROM for us to use. When programming we can organize our const data into modules and such to keep it organized, but once the game is compiled it's just one huge flat address space. TODO: Parasyte says that a FS can be handy even if it's all just ReadOnly, so we'll eventually talk about how you might set up such a thing I guess, since we'll already be talking about replacements for three of the other four things we \"lost\". Maybe we'll make Parasyte write that section. Networking, well, the GBA has a Link Cable you can use to communicate with another GBA, but it's not really like a unix socket with TCP, so the standard Rust networking isn't a very good match. Clock is actually two different things at once. One is the ability to store the time long term, which is a bit of hardware that some gamepaks have in them (eg: pokemon ruby/sapphire/emerald). The GBA itself can't keep time while power is off. However, the second part is just tracking time moment to moment, which the GBA can totally do. We'll see how to access the timers soon enough. Which just leaves us with allocation. Do we need an allocator? Depends on your game. For demos and small games you probably don't need one. For bigger games you'll maybe want to get an allocator going eventually. It's in some sense a crutch, but it's a very useful one. So I promise that at some point we'll cover how to get an allocator going. Either a Rust Global Allocator (if practical), which would allow for a lot of the standard library types to be used \"for free\" once it was set up, or just a custom allocator that's GBA specific if Rust's global allocator style isn't a good fit for the GBA (I honestly haven't looked into it).","breadcrumbs":"Quirks » No Standard Library","id":"17","title":"No Standard Library"},"18":{"body":"If our code panics, we usually want to see that panic message. Unfortunately, without a way to access something like stdout or stderr we've gotta do something a little weirder. If our program is running within the mGBA emulator, version 0.7 or later, we can access a special set of addresses that allow us to send out CString values, which then appear within a message log that you can check. We can capture this behavior by making an MGBADebug type, and then implement core::fmt::Write for that type. Once done, the write! macro will let us target the mGBA debug output channel. When used, it looks like this: #[panic_handler]\nfn panic(info: &core::panic::PanicInfo) -> ! { use core::fmt::Write; use gba::mgba::{MGBADebug, MGBADebugLevel}; if let Some(mut mgba) = MGBADebug::new() { let _ = write!(mgba, \"{}\", info); mgba.send(MGBADebugLevel::Fatal); } loop {}\n} If you want to follow the particulars you can check the MGBADebug source in the gba crate. Basically, there's one address you can use to try and activate the debug output, and if it works you write your message into the \"array\" at another address, and then finally write a send value to a third address. You'll need to have read the volatile section for the details to make sense.","breadcrumbs":"Quirks » Bare Metal Panic","id":"18","title":"Bare Metal Panic"},"19":{"body":"The above code will make your program fail to build in debug mode, saying that __clzsi2 can't be found. This is a special builtin function that LLVM attempts to use when there's no hardware version of an operation it wants to do (in this case, counting the leading zeros). It's not actually necessary in this case, which is why you only need it in debug mode. The higher optimization level of release mode makes LLVM pre-compute more and fold more constants or whatever and then it stops trying to call __clzsi2 . Unfortunately, sometimes a build will fail with a missing intrinsic even in release mode. If LLVM wants core to have that intrinsic then you're in trouble, you'll have to send a PR to the compiler-builtins repository and hope to get it into rust itself. If LLVM wants your code to have the intrinsic then you're in less trouble. You can look up the details and then implement it yourself. It can go anywhere in your program, as long as it has the right ABI and name. In the case of __clzsi2 it takes a usize and returns a usize , so you'd write something like: #[no_mangle]\npub extern \"C\" fn __clzsi2(mut x: usize) -> usize { //\n} And so on for whatever other missing intrinsic.","breadcrumbs":"Quirks » LLVM Intrinsics","id":"19","title":"LLVM Intrinsics"},"2":{"body":"This book naturally assumes that you've already read Rust's core book: The Rust Programming Language Now, I know it sounds silly to say \"if you wanna program Rust on this old video game system you should already know how to program Rust\", but the more people I meet and chat with the more they tell me that they jumped into Rust without reading any or all of the book. You know who you are. Please, read the whole book! In addition to the core book, there's also an expansion book that I will declare to be required reading for this: The Rustonomicon The Rustonomicon is all about trying to demystify unsafe . We'll end up using a fair bit of unsafe code as a natural consequence of doing direct hardware manipulations. Using unsafe is like swinging a sword , you should start slowly, practice carefully, and always pay attention no matter how experienced you think you've become. That said, it's sometimes a necessary tool to get the job done, so you have to break out of the borderline pathological fear of using it that most rust programmers tend to have.","breadcrumbs":"Introduction » Reader Requirements","id":"2","title":"Reader Requirements"},"20":{"body":"In addition to not having much of the standard library available, we don't even have a floating point unit available! We can't do floating point math in hardware! We could still do floating point math as pure software computations if we wanted, but that's a slow, slow thing to do. Are there faster ways? It's the same answer as always: \"Yes, but not without a tradeoff.\" The faster way is to represent fractional values using a system called a Fixed Point Representation . What do we trade away? Numeric range. Floating point math stores bits for base value and for exponent all according to a single well defined standard for how such a complicated thing works. Fixed point math takes a normal integer (either signed or unsigned) and then just \"mentally associates\" it (so to speak) with a fractional value for its \"units\". If you have 3 and it's in units of 1/2, then you have 3/2, or 1.5 using decimal notation. If your number is 256 and it's in units of 1/256th then the value is 1.0 in decimal notation. Floating point math requires dedicated hardware to perform quickly, but it can \"trade\" precision when it needs to represent extremely large or small values. Fixed point math is just integral math, which our GBA is reasonably good at, but because your number is associated with a fixed fraction your results can get out of range very easily.","breadcrumbs":"Quirks » Fixed Only","id":"20","title":"Fixed Only"},"21":{"body":"So we want to associate our numbers with a mental note of what units they're in: PhantomData is a type that tells the compiler \"please remember this extra type info\" when you add it as a field to a struct. It goes away at compile time, so it's perfect for us to use as space for a note to ourselves without causing runtime overhead. The typenum crate is the best way to represent a number within a type in Rust. Since our values on the GBA are always specified as a number of fractional bits to count the number as, we can put typenum types such as U8 or U14 into our PhantomData to keep track of what's going on. Now, those of you who know me, or perhaps just know my reputation, will of course immediately question what happened to the real Lokathor. I do not care for most crates, and I particularly don't care for using a crate in teaching situations. However, typenum has a number of factors on its side that let me suggest it in this situation: It's version 1.10 with a total of 21 versions and nearly 700k downloads, so we can expect that the major troubles have been shaken out and that it will remain fairly stable for quite some time to come. It has no further dependencies that it's going to drag into the compilation. It happens all at compile time, so it's not clogging up our actual game with any nonsense. The (interesting) subject of \"how do you do math inside Rust's trait system?\" is totally separate from the concern that we're trying to focus on here. Therefore, we will consider it acceptable to use this crate. Now the typenum crate defines a whole lot, but we'll focus down to just a single type at the moment: UInt is a type-level unsigned value. It's like u8 or u16 , but while they're types that then have values, each UInt construction statically equates to a specific value. Like how the () type only has one value, which is also called () . In this case, you wrap up UInt around smaller UInt values and a B1 or B0 value to build up the binary number that you want at the type level. In other words, instead of writing let six = 0b110; We write type U6 = UInt, B1>, B0>; Wild, I know. If you look into the typenum crate you can do math and stuff with these type level numbers, and we will a little bit below, but to start off we just need to store one in some PhantomData .","breadcrumbs":"Quirks » Representing A Fixed Point Value","id":"21","title":"Representing A Fixed Point Value"},"22":{"body":"Our actual type for a fixed point value looks like this: use core::marker::PhantomData;\nuse typenum::marker_traits::Unsigned; /// Fixed point `T` value with `F` fractional bits.\n#[derive(Debug, Copy, Clone, Default, PartialEq, Eq, PartialOrd, Ord)]\n#[repr(transparent)]\npub struct Fx { bits: T, _phantom: PhantomData,\n} This says that Fx is a generic type that holds some base number type T and a F type that's marking off how many fractional bits we're using. We only want people giving unsigned type-level values for the PhantomData type, so we use the trait bound F: Unsigned . We use repr(transparent) here to ensure that Fx will always be treated just like the base type in the final program (in terms of bit pattern and ABI). If you go and check, this is basically how the existing general purpose crates for fixed point math represent their numbers. They're a little fancier about it because they have to cover every case, and we only have to cover our GBA case. That's quite a bit to type though. We probably want to make a few type aliases for things to be easier to look at. Unfortunately there's no standard notation for how you write a fixed point type. We also have to limit ourselves to what's valid for use in a Rust type too. I like the fx thing, so we'll use that for signed and then fxu if we need an unsigned value. /// Alias for an `i16` fixed point value with 8 fractional bits.\npub type fx8_8 = Fx; Rust will complain about having non_camel_case_types , and you can shut that warning up by putting an #[allow(non_camel_case_types)] attribute on the type alias directly, or you can use #![allow(non_camel_case_types)] at the very top of the module to shut up that warning for the whole module (which is what I did).","breadcrumbs":"Quirks » A struct For Fixed Point","id":"22","title":"A struct For Fixed Point"},"23":{"body":"So how do we actually make one of these values? Well, we can always just wrap or unwrap any value in our Fx type: impl Fx { /// Uses the provided value directly. pub fn from_raw(r: T) -> Self { Fx { num: r, phantom: PhantomData, } } /// Unwraps the inner value. pub fn into_raw(self) -> T { self.num }\n} I'd like to use the From trait of course, but it was giving me some trouble, i think because of the orphan rule. Oh well. If we want to be particular to the fact that these are supposed to be numbers ... that gets tricky. Rust is actually quite bad at being generic about number types. You can use the num crate, or you can just use a macro and invoke it once per type. Guess what we're gonna do. macro_rules! fixed_point_methods { ($t:ident) => { impl Fx<$t, F> { /// Gives the smallest positive non-zero value. pub fn precision() -> Self { Fx { num: 1, phantom: PhantomData, } } /// Makes a value with the integer part shifted into place. pub fn from_int_part(i: $t) -> Self { Fx { num: i << F::U8, phantom: PhantomData, } } } };\n} fixed_point_methods! {u8}\nfixed_point_methods! {i8}\nfixed_point_methods! {i16}\nfixed_point_methods! {u16}\nfixed_point_methods! {i32}\nfixed_point_methods! {u32} Now you'd think that those can be const , but at the moment you can't have a const function with a bound on any trait other than Sized , so they have to be normal functions. Also, we're doing something a little interesting there with from_int_part . We can take our F type and get its constant value. There's other associated constants if we want it in other types, and also non-const methods if you wanted that for some reason (maybe passing it as a closure function? dunno).","breadcrumbs":"Quirks » Constructing A Fixed Point Value","id":"23","title":"Constructing A Fixed Point Value"},"24":{"body":"Next, once we have a value in one base type we will need to be able to move it into another base type. Unfortunately this means we gotta use the as operator, which requires a concrete source type and a concrete destination type. There's no easy way for us to make it generic here. We could let the user use into_raw , cast, and then do from_raw , but that's error prone because they might change the fractional bit count accidentally. This means that we have to write a function that does the casting while perfectly preserving the fractional bit quantity. If we wrote one function for each conversion it'd be like 30 different possible casts (6 base types that we support, and then 5 possible target types). Instead, we'll write it just once in a way that takes a closure, and let the user pass a closure that does the cast. The compiler should merge it all together quite nicely for us once optimizations kick in. This code goes outside the macro. I want to avoid too much code in the macro if we can, it's a little easier to cope with I think. /// Casts the base type, keeping the fractional bit quantity the same. pub fn cast_inner Z>(self, op: C) -> Fx { Fx { num: op(self.num), phantom: PhantomData, } } It's horrible and ugly, but Rust is just bad at numbers sometimes.","breadcrumbs":"Quirks » Casting Base Values","id":"24","title":"Casting Base Values"},"25":{"body":"In addition to the base value we might want to change our fractional bit quantity. This is actually easier that it sounds, but it also requires us to be tricky with the generics. We can actually use some typenum type level operators here. This code goes inside the macro: we need to be able to use the left shift and right shift, which is easiest when we just use the macro's $t as our type. We could alternately put a similar function outside the macro and be generic on T having the left and right shift operators by using a where clause. As much as I'd like to avoid too much code being generated by macro, I'd even more like to avoid generic code with huge and complicated trait bounds. It comes down to style, and you gotta decide for yourself. /// Changes the fractional bit quantity, keeping the base type the same. pub fn adjust_fractional_bits>(self) -> Fx<$t, Y> { let leftward_movement: i32 = Y::to_i32() - F::to_i32(); Fx { num: if leftward_movement > 0 { self.num << leftward_movement } else { self.num >> (-leftward_movement) }, phantom: PhantomData, } } There's a few things at work. First, we introduce Y as the target number of fractional bits, and we also limit it that the target bits quantity can't be the same as we already have using a type-level operator. If it's the same as we started with, why are you doing the cast at all? Now, once we're sure that the current bits and target bits aren't the same, we compute target - start , and call this our \"leftward movement\". Example: if we're targeting 8 bits and we're at 4 bits, we do 8-4 and get +4 as our leftward movement. If the leftward_movement is positive we naturally shift our current value to the left. If it's not positive then it must be negative because we eliminated 0 as a possibility using the type-level operator, so we shift to the right by the negative value.","breadcrumbs":"Quirks » Adjusting Fractional Part","id":"25","title":"Adjusting Fractional Part"},"26":{"body":"From here on we're getting help from this blog post by Job Vranish , so thank them if you learn something. I might have given away the game a bit with those derive traits on our fixed point type. For a fair number of operations you can use the normal form of the op on the inner bits as long as the fractional parts have the same quantity. This includes equality and ordering (which we derived) as well as addition, subtraction, and bit shifting (which we need to do ourselves). This code can go outside the macro, with sufficient trait bounds. impl, F: Unsigned> Add for Fx { type Output = Self; fn add(self, rhs: Fx) -> Self::Output { Fx { num: self.num + rhs.num, phantom: PhantomData, } }\n} The bound on T makes it so that Fx can be added any time that T can be added to its own type with itself as the output. We can use the exact same pattern for Sub , Shl , Shr , and Neg . With enough trait bounds, we can do anything! impl, F: Unsigned> Sub for Fx { type Output = Self; fn sub(self, rhs: Fx) -> Self::Output { Fx { num: self.num - rhs.num, phantom: PhantomData, } }\n} impl, F: Unsigned> Shl for Fx { type Output = Self; fn shl(self, rhs: u32) -> Self::Output { Fx { num: self.num << rhs, phantom: PhantomData, } }\n} impl, F: Unsigned> Shr for Fx { type Output = Self; fn shr(self, rhs: u32) -> Self::Output { Fx { num: self.num >> rhs, phantom: PhantomData, } }\n} impl, F: Unsigned> Neg for Fx { type Output = Self; fn neg(self) -> Self::Output { Fx { num: -self.num, phantom: PhantomData, } }\n} Unfortunately, for Shl and Shr to have as much coverage on our type as it does on the base type (allowing just about any right hand side) we'd have to do another macro, but I think just u32 is fine. We can always add more later if we need. We could also implement BitAnd , BitOr , BitXor , and Not , but they don't seem relevent to our fixed point math use, and this section is getting long already. Just use the same general patterns if you want to add it in your own programs. Shockingly, Rem also works directly if you want it, though I don't forsee us needing floating point remainder. Also, the GBA can't do hardware division or remainder, and we'll have to work around that below when we implement Div (which maybe we don't need, but it's complex enough I should show it instead of letting people guess). Note: In addition to the various Op traits, there's also OpAssign variants. Each OpAssign is the same as Op , but takes &mut self instead of self and then modifies in place instead of producing a fresh value. In other words, if you want both + and += you'll need to do the AddAssign trait too. It's not the worst thing to just write a = a+b , so I won't bother with showing all that here. It's pretty easy to figure out for yourself if you want.","breadcrumbs":"Quirks » Addition, Subtraction, Shifting, Negative, Comparisons","id":"26","title":"Addition, Subtraction, Shifting, Negative, Comparisons"},"27":{"body":"This is where things get more interesting. When we have two numbers A and B they really stand for (a*f) and (b*f) . If we write A*B then we're really writing (a*f)*(b*f) , which can be rewritten as (a*b)*2f , and now it's obvious that we have one more f than we wanted to have. We have to do the multiply of the inner value and then divide out the f . We divide by 1 << bit_count , so if we have 8 fractional bits we'll divide by 256. The catch is that, when we do the multiply we're extremely likely to overflow our base type with that multiplication step. Then we do that divide, and now our result is basically nonsense. We can avoid this to some extent by casting up to a higher bit type, doing the multiplication and division at higher precision, and then casting back down. We want as much precision as possible without being too inefficient, so we'll always cast up to 32-bit (on a 64-bit machine you'd cast up to 64-bit instead). Naturally, any signed value has to be cast up to i32 and any unsigned value has to be cast up to u32 , so we'll have to handle those separately. Also, instead of doing an actual divide we can right-shift by the correct number of bits to achieve the same effect. Except when we have a signed value that's negative, because actual division truncates towards zero and right-shifting truncates towards negative infinity. We can get around this by flipping the sign, doing the shift, and flipping the sign again (which sounds silly but it's so much faster than doing an actual division). Also, again signed values can be annoying, because if the value just happens to be i32::MIN then when you negate it you'll have... still a negative value. I'm not 100% on this, but I think the correct thing to do at that point is to give $t::MIN as the output num value. Did you get all that? Good, because this involves casting, so we will need to implement it three times, which calls for another macro. macro_rules! fixed_point_signed_multiply { ($t:ident) => { impl Mul for Fx<$t, F> { type Output = Self; fn mul(self, rhs: Fx<$t, F>) -> Self::Output { let pre_shift = (self.num as i32).wrapping_mul(rhs.num as i32); if pre_shift < 0 { if pre_shift == core::i32::MIN { Fx { num: core::$t::MIN, phantom: PhantomData, } } else { Fx { num: (-((-pre_shift) >> F::U8)) as $t, phantom: PhantomData, } } } else { Fx { num: (pre_shift >> F::U8) as $t, phantom: PhantomData, } } } } };\n} fixed_point_signed_multiply! {i8}\nfixed_point_signed_multiply! {i16}\nfixed_point_signed_multiply! {i32} macro_rules! fixed_point_unsigned_multiply { ($t:ident) => { impl Mul for Fx<$t, F> { type Output = Self; fn mul(self, rhs: Fx<$t, F>) -> Self::Output { Fx { num: ((self.num as u32).wrapping_mul(rhs.num as u32) >> F::U8) as $t, phantom: PhantomData, } } } };\n} fixed_point_unsigned_multiply! {u8}\nfixed_point_unsigned_multiply! {u16}\nfixed_point_unsigned_multiply! {u32}","breadcrumbs":"Quirks » Multiplication","id":"27","title":"Multiplication"},"28":{"body":"Division is similar to multiplication, but reversed. Which makes sense. This time A/B gives (a*f)/(b*f) which is a/b , one less f than we were after. As with the multiplication version of things, we have to up-cast our inner value as much a we can before doing the math, to allow for the most precision possible. The snag here is that the GBA has no division or remainder. Instead, the GBA has a BIOS function you can call to do i32/i32 division. This is a potential problem for us though. If we have some unsigned value, we need it to fit within the positive space of an i32 after the multiply so that we can cast it to i32 , call the BIOS function that only works on i32 values, and cast it back to its actual type. If you have a u8 you're always okay, even with 8 floating bits. If you have a u16 you're okay even with a maximum value up to 15 floating bits, but having a maximum value and 16 floating bits makes it break. If you have a u32 you're probably going to be in trouble all the time. So... ugh, there's not much we can do about this. For now we'll just have to suffer some. // TODO: find a numerics book that tells us how to do u32/u32 divisions. macro_rules! fixed_point_signed_division { ($t:ident) => { impl Div for Fx<$t, F> { type Output = Self; fn div(self, rhs: Fx<$t, F>) -> Self::Output { let mul_output: i32 = (self.num as i32).wrapping_mul(1 << F::U8); let divide_result: i32 = crate::bios::div(mul_output, rhs.num as i32); Fx { num: divide_result as $t, phantom: PhantomData, } } } };\n} fixed_point_signed_division! {i8}\nfixed_point_signed_division! {i16}\nfixed_point_signed_division! {i32} macro_rules! fixed_point_unsigned_division { ($t:ident) => { impl Div for Fx<$t, F> { type Output = Self; fn div(self, rhs: Fx<$t, F>) -> Self::Output { let mul_output: i32 = (self.num as i32).wrapping_mul(1 << F::U8); let divide_result: i32 = crate::bios::div(mul_output, rhs.num as i32); Fx { num: divide_result as $t, phantom: PhantomData, } } } };\n} fixed_point_unsigned_division! {u8}\nfixed_point_unsigned_division! {u16}\nfixed_point_unsigned_division! {u32}","breadcrumbs":"Quirks » Division","id":"28","title":"Division"},"29":{"body":"TODO: look up tables! arcbits!","breadcrumbs":"Quirks » Trigonometry","id":"29","title":"Trigonometry"},"3":{"body":"So, what's this book actually gonna teach you? My goal is certainly not just showing off the crate. Programming for the GBA is weird enough that I'm trying to teach you all the rest of the stuff you need to know along the way. If I do my job right then you'd be able to write your own crate for GBA stuff just how you think it should all go by the end. Overall the book is sorted more for easy review once you're trying to program something. The GBA has a few things that can stand on their own and many other things are a mass of interconnected concepts, so some parts of the book end up having to refer you to portions that you haven't read yet. The chapters and sections are sorted so that minimal future references are required, but it's unavoidable that it'll happen sometimes. The actual \"tutorial order\" of the book is the Examples chapter. Each section of that chapter breaks down one of the provided examples in the examples directory of the repository. We go over what sections of the book you'll need to have read for the example code to make sense, and also how we apply the general concepts described in the book to the specific example cases.","breadcrumbs":"Introduction » Book Goals and Style","id":"3","title":"Book Goals and Style"},"30":{"body":"If, after seeing all that, and seeing that I still didn't even cover every possible trait impl that you might want for all the possible types... if after all that you feel too intimidated, then I'll cave a bit on your behalf and suggest to you that the fixed crate seems to be the best crate available for fixed point math. I have not tested its use on the GBA myself . It's just my recommendation from looking at the docs of the various options available, if you really wanted to just have a crate for it.","breadcrumbs":"Quirks » Just Using A Crate","id":"30","title":"Just Using A Crate"},"31":{"body":"TODO: update this when we can make more stuff const","breadcrumbs":"Quirks » Volatile Destination","id":"31","title":"Volatile Destination"},"32":{"body":"The compiler is an eager friend, so when it sees a read or a write that won't have an effect, it eliminates that read or write. For example, if we write let mut x = 5;\nx = 7; The compiler won't actually ever put 5 into x . It'll skip straight to putting 7 in x , because we never read from x when it's 5, so that's a safe change to make. Normally, values are stored in RAM, which has no side effects when you read and write from it. RAM is purely for keeping notes about values you'll need later on. However, what if we had a bit of hardware where we wanted to do a write and that did something other than keeping the value for us to look at later? As you saw in the hello_magic example, we have to use a write_volatile operation. Volatile means \"just do it anyway\". The compiler thinks that it's pointless, but we know better, so we can force it to really do exactly what we say by using write_volatile instead of write . This is kinda error prone though, right? Because it's just a raw pointer, so we might forget to use write_volatile at some point. Instead, we want a type that's always going to use volatile reads and writes. Also, we want a pointer type that lets our reads and writes to be as safe as possible once we've unsafely constructed the initial value.","breadcrumbs":"Quirks » Volatile Memory","id":"32","title":"Volatile Memory"},"33":{"body":"First, we want a type that stores a location within the address space. This can be a pointer, or a usize , and we'll use a usize because that's easier to work with in a const context (and we want to have const when we can get it). We'll also have our type use NonZeroUsize instead of just usize so that Option> stays as a single machine word. This helps quite a bit when we want to iterate over the addresses of a block of memory (such as locations within the palette memory). Hardware is never at the null address anyway. Also, if we had just an address number then we wouldn't be able to track what type the address is for. We need some PhantomData , and specifically we need the phantom data to be for *mut T : If we used *const T that'd have the wrong variance . If we used &mut T then that's fusing in the ideas of lifetime and exclusive access to our type. That's potentially important, but that's also an abstraction we'll build on top of this VolAddress type if we need it. One abstraction layer at a time, so we start with just a phantom pointer. This gives us a type that looks like this: #[derive(Debug)]\n#[repr(transparent)]\npub struct VolAddress { address: NonZeroUsize, marker: PhantomData<*mut T>,\n} Now, because of how derive is specified, it derives traits if the generic parameter supports those traits. Since our type is like a pointer, the traits it supports are distinct from whatever traits the target type supports. So we'll provide those implementations manually. impl Clone for VolAddress { fn clone(&self) -> Self { *self }\n}\nimpl Copy for VolAddress {}\nimpl PartialEq for VolAddress { fn eq(&self, other: &Self) -> bool { self.address == other.address }\n}\nimpl Eq for VolAddress {}\nimpl PartialOrd for VolAddress { fn partial_cmp(&self, other: &Self) -> Option { Some(self.address.cmp(&other.address)) }\n}\nimpl Ord for VolAddress { fn cmp(&self, other: &Self) -> Ordering { self.address.cmp(&other.address) }\n} Boilerplate junk, not interesting. There's a reason that you derive those traits 99% of the time in Rust.","breadcrumbs":"Quirks » Constructing The VolAddress Type","id":"33","title":"Constructing The VolAddress Type"},"34":{"body":"Okay so here's the next core concept: If we unsafely construct a VolAddress , then we can safely use the value once it's been properly created. // you'll need these features enabled and a recent nightly\n#![feature(const_int_wrapping)]\n#![feature(min_const_unsafe_fn)] impl VolAddress { pub const unsafe fn new_unchecked(address: usize) -> Self { VolAddress { address: NonZeroUsize::new_unchecked(address), marker: PhantomData, } } pub const unsafe fn cast(self) -> VolAddress { VolAddress { address: self.address, marker: PhantomData, } } pub unsafe fn offset(self, offset: isize) -> Self { VolAddress { address: NonZeroUsize::new_unchecked(self.address.get().wrapping_add(offset as usize * core::mem::size_of::())), marker: PhantomData, } }\n} So what are the unsafety rules here? Non-null, obviously. Must be aligned for T Must always produce valid bit patterns for T Must not be part of the address space that Rust's stack or allocator will ever uses. So, again using the hello_magic example, we had (0x400_0000 as *mut u16).write_volatile(0x0403); And instead we could declare const MAGIC_LOCATION: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0000) };","breadcrumbs":"Quirks » Constructing A VolAddress Value","id":"34","title":"Constructing A VolAddress Value"},"35":{"body":"Now that we've named the magic location, we want to write to it. impl VolAddress { pub fn read(self) -> T where T: Copy, { unsafe { (self.address.get() as *mut T).read_volatile() } } pub unsafe fn read_non_copy(self) -> T { (self.address.get() as *mut T).read_volatile() } pub fn write(self, val: T) { unsafe { (self.address.get() as *mut T).write_volatile(val) } }\n} So if the type is Copy we can read it as much as we want. If, somehow, the type isn't Copy , then it might be Drop , and that means if we read out a value over and over we could cause the drop method to trigger UB. Since the end user might really know what they're doing, we provide an unsafe backup read_non_copy . On the other hand, we can write to the location as much as we want. Even if the type isn't Copy , not running Drop is safe , so a write is always safe. Now we can write to our magical location. MAGIC_LOCATION.write(0x0403);","breadcrumbs":"Quirks » Using A VolAddress Value","id":"35","title":"Using A VolAddress Value"},"36":{"body":"We've already seen that sometimes we want to have a base address of some sort and then offset from that location to another. What if we wanted to iterate over all the locations . That's not particularly hard. impl VolAddress { pub const unsafe fn iter_slots(self, slots: usize) -> VolAddressIter { VolAddressIter { vol_address: self, slots } }\n} #[derive(Debug)]\npub struct VolAddressIter { vol_address: VolAddress, slots: usize,\n}\nimpl Clone for VolAddressIter { fn clone(&self) -> Self { VolAddressIter { vol_address: self.vol_address, slots: self.slots, } }\n}\nimpl PartialEq for VolAddressIter { fn eq(&self, other: &Self) -> bool { self.vol_address == other.vol_address && self.slots == other.slots }\n}\nimpl Eq for VolAddressIter {}\nimpl Iterator for VolAddressIter { type Item = VolAddress; fn next(&mut self) -> Option { if self.slots > 0 { let out = self.vol_address; unsafe { self.slots -= 1; self.vol_address = self.vol_address.offset(1); } Some(out) } else { None } }\n}\nimpl FusedIterator for VolAddressIter {}","breadcrumbs":"Quirks » VolAddress Iteration","id":"36","title":"VolAddress Iteration"},"37":{"body":"Obviously, having a base address and a length exist separately is error prone. There's a good reason for slices to keep their pointer and their length together. We want something like that, which we'll call a \"block\" because \"array\" and \"slice\" are already things in Rust. #[derive(Debug)]\npub struct VolAddressBlock { vol_address: VolAddress, slots: usize,\n}\nimpl Clone for VolAddressBlock { fn clone(&self) -> Self { VolAddressBlock { vol_address: self.vol_address, slots: self.slots, } }\n}\nimpl PartialEq for VolAddressBlock { fn eq(&self, other: &Self) -> bool { self.vol_address == other.vol_address && self.slots == other.slots }\n}\nimpl Eq for VolAddressBlock {} impl VolAddressBlock { pub const unsafe fn new_unchecked(vol_address: VolAddress, slots: usize) -> Self { VolAddressBlock { vol_address, slots } } pub const fn iter(self) -> VolAddressIter { VolAddressIter { vol_address: self.vol_address, slots: self.slots, } } pub unsafe fn index_unchecked(self, slot: usize) -> VolAddress { self.vol_address.offset(slot as isize) } pub fn index(self, slot: usize) -> VolAddress { if slot < self.slots { unsafe { self.vol_address.offset(slot as isize) } } else { panic!(\"Index Requested: {} >= Bound: {}\", slot, self.slots) } } pub fn get(self, slot: usize) -> Option> { if slot < self.slots { unsafe { Some(self.vol_address.offset(slot as isize)) } } else { None } }\n} Now we can have something like: const OTHER_MAGIC: VolAddressBlock = unsafe { VolAddressBlock::new_unchecked( VolAddress::new_unchecked(0x600_0000), 240 * 160 )\n}; OTHER_MAGIC.index(120 + 80 * 240).write_volatile(0x001F);\nOTHER_MAGIC.index(136 + 80 * 240).write_volatile(0x03E0);\nOTHER_MAGIC.index(120 + 96 * 240).write_volatile(0x7C00);","breadcrumbs":"Quirks » VolAddressBlock","id":"37","title":"VolAddressBlock"},"38":{"body":"If you wanna see these types and methods with a full docs write up you should check the GBA crate's source.","breadcrumbs":"Quirks » Docs?","id":"38","title":"Docs?"},"39":{"body":"In addition to some memory locations being volatile, it's also possible for inline assembly to be declared volatile. This is basically the same idea, \"hey just do what I'm telling you, don't get smart about it\". Normally when you have some asm! it's basically treated like a function, there's inputs and outputs and the compiler will try to optimize it so that if you don't actually use the outputs it won't bother with doing those instructions. However, asm! is basically a pure black box, so the compiler doesn't know what's happening inside at all, and it can't see if there's any important side effects going on. An example of an important side effect that doesn't have output values would be putting the CPU into a low power state while we want for the next VBlank. This lets us save quite a bit of battery power. It requires some setup to be done safely (otherwise the GBA won't ever actually wake back up from the low power state), but the asm! you use once you're ready is just a single instruction with no return value. The compiler can't tell what's going on, so you just have to say \"do it anyway\". Note that if you use a linker script to include any ASM with your Rust program (eg: the crt0.s file that we setup in the \"Development Setup\" section), all of that ASM is \"volatile\" for these purposes. Volatile isn't actually a hardware concept, it's just an LLVM concept, and the linker script runs after LLVM has done its work.","breadcrumbs":"Quirks » Volatile ASM","id":"39","title":"Volatile ASM"},"4":{"body":"Before you can build a GBA game you'll have to follow some special steps to setup the development environment. Once again, extra special thanks to Ketsuban , who first dove into how to make this all work with rust and then shared it with the world.","breadcrumbs":"Introduction » Development Setup","id":"4","title":"Development Setup"},"40":{"body":"TODO: we've already used newtype twice by now (fixed point values and volatile addresses), so we need to adjust how we start this section. There's a great Zero Cost abstraction that we'll be using a lot that you might not already be familiar with: we're talking about the \"Newtype Pattern\"! Now, I told you to read the Rust Book before you read this book, and I'm sure you're all good students who wouldn't sneak into this book without doing the required reading, so I'm sure you all remember exactly what I'm talking about, because they touch on the newtype concept in the book twice, in two very long named sections: Using the Newtype Pattern to Implement External Traits on External Types Using the Newtype Pattern for Type Safety and Abstraction ...Yeah... The Rust Book doesn't know how to make a short sub-section name to save its life. Shame.","breadcrumbs":"Quirks » Newtype","id":"40","title":"Newtype"},"41":{"body":"So, we have all these pieces of data, and we want to keep them separated, and we don't wanna pay the cost for it at runtime. Well, we're in luck, we can pay the cost at compile time. pub struct PixelColor(u16); TODO: we've already talked about repr(transparent) by now Ah, except that, as I'm sure you remember from The Rustonomicon (and from the RFC too, of course), if we have a single field struct that's sometimes different from having just the bare value, so we should be using #[repr(transparent)] with our newtypes. #[repr(transparent)]\npub struct PixelColor(u16); And then we'll need to do that same thing for every other newtype we want . Except there's only two tiny parts that actually differ between newtype declarations: the new name and the base type. All the rest is just the same rote code over and over. Generating piles and piles of boilerplate code? Sounds like a job for a macro to me!","breadcrumbs":"Quirks » Newtype Basics","id":"41","title":"Newtype Basics"},"42":{"body":"If you're going to do much with macros you should definitely read through The Little Book of Rust Macros , but we won't be doing too much so you can just follow along here a bit if you like. The most basic version of a newtype macro starts like this: #[macro_export]\nmacro_rules! newtype { ($new_name:ident, $old_name:ident) => { #[repr(transparent)] pub struct $new_name($old_name); };\n} The #[macro_export] makes it exported by the current module (like pub kinda), and then we have one expansion option that takes an identifier, a , , and then a second identifier. The new name is the outer type we'll be using, and the old name is the inner type that's being wrapped. You'd use our new macro something like this: newtype! {PixelColorCurly, u16} newtype!(PixelColorParens, u16); newtype![PixelColorBrackets, u16]; Note that you can invoke the macro with the outermost grouping as any of () , [] , or {} . It makes no particular difference to the macro. Also, that space in the first version is kinda to show off that you can put white space in between the macro name and the grouping if you want. The difference is mostly style, but there are some rules and considerations here: If you use curly braces then you must not put a ; after the invocation. If you use parentheses or brackets then you must put the ; at the end. Rustfmt cares which you use and formats accordingly: Curly brace macro use mostly gets treated like a code block. Parentheses macro use mostly gets treated like a function call. Bracket macro use mostly gets treated like an array declaration. As a reminder: remember that macro_rules macros have to appear before they're invoked in your source, so the newtype macro will always have to be at the very top of your file, or if you put it in a module within your project you'll need to declare the module before anything that uses it.","breadcrumbs":"Quirks » Making It A Macro","id":"42","title":"Making It A Macro"},"43":{"body":"We also want to be able to add derive stuff and doc comments to our newtype. Within the context of macro_rules! definitions these are called \"meta\". Since we can have any number of them we wrap it all up in a \"zero or more\" matcher. Then our macro looks like this: #[macro_export]\nmacro_rules! newtype { ($(#[$attr:meta])* $new_name:ident, $old_name:ident) => { $(#[$attr])* #[repr(transparent)] pub struct $new_name($old_name); };\n} So now we can write newtype! { /// Color on the GBA gives 5 bits for each channel, the highest bit is ignored. #[derive(Debug, Clone, Copy)] PixelColor, u16\n} Next, we can allow for the wrapping of types that aren't just a single identifier by changing $old_name from :ident to :ty . We can't also do this for the $new_type part because declaring a new struct expects a valid identifier that's not already declared (obviously), and :ty is intended for capturing types that already exist. #[macro_export]\nmacro_rules! newtype { ($(#[$attr:meta])* $new_name:ident, $old_name:ty) => { $(#[$attr])* #[repr(transparent)] pub struct $new_name($old_name); };\n} Next of course we'll want to usually have a new method that's const and just gives a 0 value. We won't always be making a newtype over a number value, but we often will. It's usually silly to have a new method with no arguments since we might as well just impl Default , but Default::default isn't const , so having pub const fn new() -> Self is justified here. Here, the token 0 is given the {integer} type, which can be converted into any of the integer types as needed, but it still can't be converted into an array type or a pointer or things like that. Accordingly we've added the \"no frills\" option which declares the struct and no new method. #[macro_export]\nmacro_rules! newtype { ($(#[$attr:meta])* $new_name:ident, $old_name:ty) => { $(#[$attr])* #[repr(transparent)] pub struct $new_name($old_name); impl $new_name { /// A `const` \"zero value\" constructor pub const fn new() -> Self { $new_name(0) } } }; ($(#[$attr:meta])* $new_name:ident, $old_name:ty, no frills) => { $(#[$attr])* #[repr(transparent)] pub struct $new_name($old_name); };\n} Finally, we usually want to have the wrapped value be totally private, but there are occasions where that's not the case. For this, we can allow the wrapped field to accept a visibility modifier. #[macro_export]\nmacro_rules! newtype { ($(#[$attr:meta])* $new_name:ident, $v:vis $old_name:ty) => { $(#[$attr])* #[repr(transparent)] pub struct $new_name($v $old_name); impl $new_name { /// A `const` \"zero value\" constructor pub const fn new() -> Self { $new_name(0) } } }; ($(#[$attr:meta])* $new_name:ident, $v:vis $old_name:ty, no frills) => { $(#[$attr])* #[repr(transparent)] pub struct $new_name($v $old_name); };\n}","breadcrumbs":"Quirks » Upgrade That Macro!","id":"43","title":"Upgrade That Macro!"},"44":{"body":"Have you ever wanted to assert things even before runtime ? We all have, of course. Particularly when the runtime machine is a poor little GBA, we'd like to have the machine doing the compile handle as much checking as possible. Enter the static assertions crate, which provides a way to let you assert on a const expression. This is an amazing crate that you should definitely use when you can. It's written by Nikolai Vazquez , and they kindly wrote up a blog post that explains the thinking behind it. However, I promised that each example would be single file, and I also promised to explain what's going on as we go, so we'll briefly touch upon giving an explanation here.","breadcrumbs":"Quirks » Constant Assertions","id":"44","title":"Constant Assertions"},"45":{"body":"Alright, as it stands (2018-12-15), we can't use if in a const context. Since we can't use if , we can't use a normal assert! . Some day it will be possible, and a failed assert at compile time will be a compile error and a failed assert at run time will be a panic and we'll have a nice unified programming experience. We can add runtime-only assertions by being a little tricky with the compiler. If we write const ASSERT: usize = 0 - 1; that gives a warning, since the math would underflow. We can upgrade that warning to a hard error: #[deny(const_err)]\nconst ASSERT: usize = 0 - 1; And to make our construction reusable we can enable the underscore_const_names feature in our program (or library) and then give each such const an underscore for a name. #![feature(underscore_const_names)] #[deny(const_err)]\nconst _: usize = 0 - 1; Now we wrap this in a macro where we give a bool expression as input. We negate the bool then cast it to a usize , meaning that true negates into false , which becomes 0usize , and then there's no underflow error. Or if the input was false , it negates into true , then becomes 1usize , and then the underflow error fires. macro_rules! const_assert { ($condition:expr) => { #[deny(const_err)] #[allow(dead_code)] const ASSERT: usize = 0 - !$condition as usize; }\n} Technically, written like this, the expression can be anything with a core::ops::Not implementation that can also be as cast into usize . That's bool , but also basically all the other number types. Since we want to ensure that we get proper looking type errors when things go wrong, we can use ($condition && true) to enforce that we get a bool (thanks to Talchas for that particular suggestion). macro_rules! const_assert { ($condition:expr) => { #[deny(const_err)] #[allow(dead_code)] const _: usize = 0 - !($condition && true) as usize; }\n}","breadcrumbs":"Quirks » How We Const Assert","id":"45","title":"How We Const Assert"},"46":{"body":"As an example of how we might use a const_assert , we'll do a demo with colors. There's a red, blue, and green channel. We store colors in a u16 with 5 bits for each channel. newtype! { #[derive(Debug, Clone, Copy, PartialEq, Eq)] Color, u16\n} And when we're building a color, we're passing in u16 values, but they could be using more than just 5 bits of space. We want to make sure that each channel is 31 or less, so we can make a color builder that does a const_assert! on the value of each channel. macro_rules! rgb { ($r:expr, $g:expr, $b:expr) => { { const_assert!($r <= 31); const_assert!($g <= 31); const_assert!($b <= 31); Color($b << 10 | $g << 5 | $r) } }\n} And then we can declare some colors const RED: Color = rgb!(31, 0, 0); const BLUE: Color = rgb!(31, 500, 0); The second one is clearly out of bounds and it fires an error just like we wanted.","breadcrumbs":"Quirks » Asserting Something","id":"46","title":"Asserting Something"},"47":{"body":"The GameBoy Advance sits in a middle place between the chthonic game consoles of the ancient past and the \"small PC in a funny case\" consoles of the modern age. On the one hand, yeah, you're gonna find a few strange conventions as you learn all the ropes. On the other, at least we're writing in Rust at all, and not having to do all the assembly by hand. This chapter for \"concepts\" has a section for each part of the GBA's hardware memory map, going by increasing order of base address value. The sections try to explain as much as possible while sticking to just the concerns you might have regarding that part of the memory map. For an assessment of how to wrangle all three parts of the video system (PALRAM, VRAM, and OAM), along with the correct IO registers, into something that shows a picture, you'll want the Video chapter. Similarly, the \"IO Registers\" part of the GBA actually controls how you interact with every single bit of hardware connected to the GBA. A full description of everything is obviously too much for just one section of the book. Instead you get an overview of general IO register rules and advice. Each particular register is described in the appropriate sections of either the Video or Non-Video chapters.","breadcrumbs":"Broad Concepts","id":"47","title":"Broad Concepts"},"48":{"body":"TODO: describe this","breadcrumbs":"Bus Size","id":"48","title":"Bus Size"},"49":{"body":"TODO: talk about parts where you can't write one byte at a time","breadcrumbs":"Minimum Write Size","id":"49","title":"Minimum Write Size"},"5":{"body":"Obviously you need your computer to have a working rust installation . However, you'll also need to ensure that you're using a nightly toolchain (we will need it for inline assembly, among other potential useful features). You can run rustup default nightly to set nightly as the system wide default toolchain, or you can use a toolchain file to use nightly just on a specific project, but either way we'll be assuming the use of nightly from now on. You'll also need the rust-src component so that cargo-xbuild will be able to compile the core crate for us in a bit, so run rustup component add rust-src . Next, you need devkitpro . They've got a graphical installer for Windows that runs nicely, and I guess pacman support on Linux (I'm on Windows so I haven't tried the Linux install myself). We'll be using a few of their general binutils for the arm-none-eabi target, and we'll also be using some of their tools that are specific to GBA development, so even if you already have the right binutils for whatever reason, you'll still want devkitpro for the gbafix utility. On Windows you'll want something like C:\\devkitpro\\devkitARM\\bin and C:\\devkitpro\\tools\\bin to be added to your PATH , depending on where you installed it to and such. On Linux you can use pacman to get it, and the default install puts the stuff in /opt/devkitpro/devkitARM/bin and /opt/devkitpro/tools/bin . If you need help you can look in our repository's .travis.yml file to see exactly what our CI does. Finally, you'll need cargo-xbuild . Just run cargo install cargo-xbuild and cargo will figure it all out for you.","breadcrumbs":"Introduction » Per System Setup","id":"5","title":"Per System Setup"},"50":{"body":"TODO: discuss what memory should be used volatile style and what can be used normal style.","breadcrumbs":"Volatile or Not?","id":"50","title":"Volatile or Not?"},"51":{"body":"","breadcrumbs":"Concepts » CPU","id":"51","title":"CPU"},"52":{"body":"Address Span: 0x0 to 0x3FFF (16k) The BIOS of the GBA is a small read-only portion of memory at the very base of the address space. However, it is also hardware protected against reading, so if you try to read from BIOS memory when the program counter isn't pointed into the BIOS (eg: any time code you write is executing) then you get basically garbage data back. So we're not going to spend time here talking about what bits to read or write within BIOS memory like we do with the other sections. Instead we're going to spend time talking about inline assembly ( tracking issue ) and then use it to call the GBA BIOS Functions . Note that BIOS calls have more overhead than normal function calls , so don't go using them all over the place if you don't have to. They're also usually written more to be compact in terms of code than for raw speed, so you actually can out speed them in some cases. Between the increased overhead and not being as speed optimized, you can sometimes do a faster job without calling the BIOS at all. (TODO: investigate more about what parts of the BIOS we could potentially offer faster alternatives for.) I'd like to take a moment to thank Marc Brinkmann (with contributions from Oliver Schneider and Philipp Oppermann ) for writing this blog post . It's at least ten times the tutorial quality as the asm entry in the Unstable Book has. In fairness to the Unstable Book, the actual spec of how inline ASM works in rust is \"basically what clang does\", and that's specified as \"basically what GCC does\", and that's basically/shockingly not specified much at all despite GCC being like 30 years old. So let's be slow and pedantic about this process.","breadcrumbs":"Concepts » BIOS","id":"52","title":"BIOS"},"53":{"body":"Fair Warning: Inline asm is one of the least stable parts of Rust overall, and if you write bad things you can trigger internal compiler errors and panics and crashes and make LLVM choke and die without explanation. If you write some inline asm and then suddenly your program suddenly stops compiling without explanation, try commenting out that whole inline asm use and see if it's causing the problem. Double check that you've written every single part of the asm call absolutely correctly, etc, etc. Bonus Warning: The general information that follows regarding the asm macro is consistent from system to system, but specific information about register names, register quantities, asm instruction argument ordering, and so on is specific to ARM on the GBA. If you're programming for any other device you'll need to carefully investigate that before you begin. Now then, with those out of the way, the inline asm docs describe an asm call as looking like this: asm!(assembly template : output operands : input operands : clobbers : options ); And once you stick a lot of stuff in there it can absolutely be hard to remember the ordering of the elements. So we'll start with a code block that has some comments thrown in on each line: asm!(/* ASM */ TODO :/* OUT */ TODO :/* INP */ TODO :/* CLO */ TODO :/* OPT */\n); Now we have to decide what we're gonna write. Obviously we're going to do some instructions, but those instructions use registers, and how are we gonna talk about them? We've got two choices. We can pick each and every register used by specifying exact register names. In THUMB mode we have 8 registers available, named r0 through r7 . If you switch into 32-bit mode there's additional registers that are also available. We can specify slots for registers we need and let LLVM decide. In this style you name your slots $0 , $1 and so on. Slot numbers are assigned first to all specified outputs, then to all specified inputs, in the order that you list them. In the case of the GBA BIOS, each BIOS function has pre-designated input and output registers, so we will use the first style. If you use inline ASM in other parts of your code you're free to use the second style.","breadcrumbs":"Concepts » Inline ASM","id":"53","title":"Inline ASM"},"54":{"body":"This is just one big string literal. You write out one instruction per line, and excess whitespace is ignored. You can also do comments within your assembly using ; to start a comment that goes until the end of the line. Assembly convention doesn't consider it unreasonable to comment potentially as much as every single line of asm that you write when you're getting used to things. Or even if you are used to things. This is cryptic stuff, there's a reason we avoid writing in it as much as possible. Remember that our Rust code is in 16-bit mode. You can switch to 32-bit mode within your asm as long as you switch back by the time the block ends. Otherwise you'll have a bad time.","breadcrumbs":"Concepts » Assembly","id":"54","title":"Assembly"},"55":{"body":"A comma separated list. Each entry looks like \"constraint\" (binding) An output constraint starts with a symbol: = for write only + for reads and writes & for for \"early clobber\", meaning that you'll write to this at some point before all input values have been read. It prevents this register from being assigned to an input register. Followed by either the letter r (if you want LLVM to pick the register to use) or curly braces around a specific register (if you want to pick). The binding can be any single 32-bit or smaller value. If your binding has bit pattern requirements (\"must be non-zero\", etc) you are responsible for upholding that. If your binding type will try to Drop later then you are responsible for it being in a fit state to do that. The binding must be either a mutable binding or a binding that was pre-declared but not yet assigned. Anything else is UB.","breadcrumbs":"Concepts » Outputs","id":"55","title":"Outputs"},"56":{"body":"This is a similar comma separated list. \"constraint\" (binding) An input constraint doesn't have the symbol prefix, you just pick either r or a named register with curly braces around it. An input binding must be a single 32-bit or smaller value. An input binding should be a type that is Copy but this is not an absolute requirement. Having the input be read is semantically similar to using core::ptr::read(&binding) and forgetting the value when you're done.","breadcrumbs":"Concepts » Inputs","id":"56","title":"Inputs"},"57":{"body":"Sometimes your asm will touch registers other than the ones declared for input and output. Clobbers are declared as a comma separated list of string literals naming specific registers. You don't use curly braces with clobbers. LLVM needs to know this information. It can move things around to keep your data safe, but only if you tell it what's about to happen. Failure to define all of your clobbers can cause UB.","breadcrumbs":"Concepts » Clobbers","id":"57","title":"Clobbers"},"58":{"body":"There's only one option we'd care to specify. That option is \"volatile\". Just like with a function call, LLVM will skip a block of asm if it doesn't see that any outputs from the asm were used later on. Nearly every single BIOS call (other than the math operations) will need to be marked as \"volatile\".","breadcrumbs":"Concepts » Options","id":"58","title":"Options"},"59":{"body":"Inputs are always r0 , r1 , r2 , and/or r3 , depending on function. Outputs are always zero or more of r0 , r1 , and r3 . Any of the output registers that aren't actually used should be marked as clobbered. All other registers are unaffected. All of the GBA BIOS calls are performed using the swi instruction, combined with a value depending on what BIOS function you're trying to invoke. If you're in 16-bit code you use the value directly, and if you're in 32-bit mode you shift the value up by 16 bits first.","breadcrumbs":"Concepts » BIOS ASM","id":"59","title":"BIOS ASM"},"6":{"body":"Once the system wide tools are ready, you'll need some particular files each time you want to start a new project. You can find them in the root of the rust-console/gba repo . thumbv4-none-agb.json describes the overall GBA to cargo-xbuild (and LLVM) so it knows what to do. Technically the GBA is thumbv4-none-eabi , but we change the eabi to agb so that we can distinguish it from other eabi devices when using cfg flags. crt0.s describes some ASM startup stuff. If you have more ASM to place here later on this is where you can put it. You also need to build it into a crt0.o file before it can actually be used, but we'll cover that below. linker.ld tells the linker all the critical info about the layout expectations that the GBA has about our program, and that it should also include the crt0.o file with our compiled rust code.","breadcrumbs":"Introduction » Per Project Setup","id":"6","title":"Per Project Setup"},"60":{"body":"For our example we'll use the division function, because GBATEK gives very clear instructions on how each register is used with that one: Signed Division, r0/r1. r0 signed 32bit Number r1 signed 32bit Denom\nReturn: r0 Number DIV Denom ;signed r1 Number MOD Denom ;signed r3 ABS (Number DIV Denom) ;unsigned\nFor example, incoming -1234, 10 should return -123, -4, +123.\nThe function usually gets caught in an endless loop upon division by zero. The math folks tell me that the r1 value should be properly called the \"remainder\" not the \"modulus\". We'll go with that for our function, doesn't hurt to use the correct names. Our Rust function has an assert against dividing by 0 , then we name some bindings without giving them a value, we make the asm call, and then return what we got. pub fn div_rem(numerator: i32, denominator: i32) -> (i32, i32) { assert!(denominator != 0); let div_out: i32; let rem_out: i32; unsafe { asm!(/* ASM */ \"swi 0x06\" :/* OUT */ \"={r0}\"(div_out), \"={r1}\"(rem_out) :/* INP */ \"{r0}\"(numerator), \"{r1}\"(denominator) :/* CLO */ \"r3\" :/* OPT */ ); } (div_out, rem_out)\n} I hope this all makes sense by now.","breadcrumbs":"Concepts » Example BIOS Function: Division","id":"60","title":"Example BIOS Function: Division"},"61":{"body":"For a full list of all the specific BIOS functions and their use you should check the gba::bios module within the gba crate. There's just so many of them that enumerating them all here wouldn't serve much purpose. Which is not to say that we'll never cover any BIOS functions in this book! Instead, we'll simply mention them when whenever they're relevent to the task at hand (such as controlling sound or waiting for vblank). //TODO: list/name all BIOS functions as well as what they relate to elsewhere.","breadcrumbs":"Concepts » Specific BIOS Functions","id":"61","title":"Specific BIOS Functions"},"62":{"body":"","breadcrumbs":"Concepts » Work RAM","id":"62","title":"Work RAM"},"63":{"body":"Address Span: 0x2000000 to 0x203FFFF (256k) This is a big pile of space, the use of which is up to each game. However, the external work ram has only a 16-bit bus (if you read/write a 32-bit value it silently breaks it up into two 16-bit operations) and also 2 wait cycles (extra CPU cycles that you have to expend per 16-bit bus use ). It's most helpful to think of EWRAM as slower, distant memory, similar to the \"heap\" in a normal application. You can take the time to go store something within EWRAM, or to load it out of EWRAM, but if you've got several operations to do in a row and you're worried about time you should pull that value into local memory, work on your local copy, and then push it back out to EWRAM.","breadcrumbs":"Concepts » External Work RAM (EWRAM)","id":"63","title":"External Work RAM (EWRAM)"},"64":{"body":"Address Span: 0x3000000 to 0x3007FFF (32k) This is a smaller pile of space, but it has a 32-bit bus and no wait. By default, 0x3007F00 to 0x3007FFF is reserved for interrupt and BIOS use. The rest of it is mostly up to you. The user's stack space starts at 0x3007F00 and proceeds down from there. For best results you should probably start at 0x3000000 and then go upwards. Under normal use it's unlikely that the two memory regions will crash into each other.","breadcrumbs":"Concepts » Internal Work RAM (IWRAM)","id":"64","title":"Internal Work RAM (IWRAM)"},"65":{"body":"Address Span: 0x400_0000 to 0x400_03FE","breadcrumbs":"Concepts » IO Registers","id":"65","title":"IO Registers"},"66":{"body":"Address Span: 0x500_0000 to 0x500_03FF (1k) Palette RAM has a 16-bit bus, which isn't really a problem because it conceptually just holds u16 values. There's no automatic wait state, but if you try to access the same location that the display controller is accessing you get bumped by 1 cycle. Since the display controller can use the palette ram any number of times per scanline it's basically impossible to predict if you'll have to do a wait or not during VDraw. During VBlank you won't have any wait of course. PALRAM is among the memory where there's weirdness if you try to write just one byte: if you try to write just 1 byte, it writes that byte into both parts of the larger 16-bit location. This doesn't really affect us much with PALRAM, because palette values are all supposed to be u16 anyway. The palette memory actually contains not one, but two sets of palettes. First there's 256 entries for the background palette data (starting at 0x500_0000 ), and then there's 256 entries for object palette data (starting at 0x500_0200 ). The GBA also has two modes for palette access: 8-bits-per-pixel (8bpp) and 4-bits-per-pixel (4bpp). In 8bpp mode an 8-bit palette index value within a background or sprite simply indexes directly into the 256 slots for that type of thing. In 4bpp mode a 4-bit palette index value within a background or sprite specifies an index within a particular \"palbank\" (16 palette entries each), and then a separate setting outside of the graphical data determines which palbank is to be used for that background or object (the screen entry data for backgrounds, and the object attributes for objects).","breadcrumbs":"Concepts » Palette RAM (PALRAM)","id":"66","title":"Palette RAM (PALRAM)"},"67":{"body":"When a pixel within a background or object specifies index 0 as its palette entry it is treated as a transparent pixel. This means that in 8bpp mode there's only 255 actual color options (0 being transparent), and in 4bpp mode there's only 15 actual color options available within each palbank (the 0th entry of each palbank is transparent). Individual backgrounds, and individual objects, each determine if they're 4bpp or 8bpp separately, so a given overall palette slot might map to a used color in 8bpp and an unused/transparent color in 4bpp. If you're a palette wizard. Palette slot 0 of the overall background palette is used to determine the \"backdrop\" color. That's the color you see if no background or object ends up being rendered within a given pixel. Since display mode 3 and display mode 5 don't use the palette, they cannot benefit from transparency.","breadcrumbs":"Concepts » Transparency","id":"67","title":"Transparency"},"68":{"body":"Address Span: 0x600_0000 to 0x601_7FFF (96k) We've used this before! VRAM has a 16-bit bus and no wait. However, the same as with PALRAM, the \"you might have to wait if the display controller is looking at it\" rule applies here. Unfortunately there's not much more exact detail that can be given about VRAM. The use of the memory depends on the video mode that you're using. One general detail of note is that you can't write individual bytes to any part of VRAM. Depending on mode and location, you'll either get your bytes doubled into both the upper and lower parts of the 16-bit location targeted, or you won't even affect the memory. This usually isn't a big deal, except in two situations: In Mode 4, if you want to change just 1 pixel, you'll have to be very careful to read the old u16 , overwrite just the byte you wanted to change, and then write that back. In any display mode, avoid using memcopy to place things into VRAM. It's written to be byte oriented, and only does 32-bit transfers under select conditions. The rest of the time it'll copy one byte at a time and you'll get either garbage or nothing at all.","breadcrumbs":"Concepts » Video RAM (VRAM)","id":"68","title":"Video RAM (VRAM)"},"69":{"body":"Address Span: 0x700_0000 to 0x700_03FF (1k) The Object Attribute Memory has a 32-bit bus and no default wait, but suffers from the \"you might have to wait if the display controller is looking at it\" rule. You cannot write individual bytes to OAM at all, but that's not really a problem because all the fields of the data types within OAM are either i16 or u16 anyway. Object attribute memory is the wildest yet: it conceptually contains two types of things, but they're interlaced with each other all the way through. Now, GBATEK and CowByte doesn't quite give names to the two data types here. TONC calls them OBJ_ATTR and OBJ_AFFINE , but we'll be giving them names fitting with the Rust naming convention. Just know that if you try to talk about it with others they might not be using the same names. In Rust terms their layout would look like this: #[repr(C)]\npub struct ObjectAttributes { attr0: u16, attr1: u16, attr2: u16, filler: i16,\n} #[repr(C)]\npub struct AffineMatrix { filler0: [u16; 3], pa: i16, filler1: [u16; 3], pb: i16, filler2: [u16; 3], pc: i16, filler3: [u16; 3], pd: i16,\n} (Note: the #[repr(C)] part just means that Rust must lay out the data exactly in the order we specify, which otherwise it is not required to do). So, we've got 1024 bytes in OAM and each ObjectAttributes value is 8 bytes, so naturally we can support up to 128 objects. At the same time , we've got 1024 bytes in OAM and each AffineMatrix is 32 bytes, so we can have 32 of them. But, as I said, these things are all interlaced with each other. See how there's \"filler\" fields in each struct? If we imagine the OAM as being just an array of one type or the other, indexes 0/1/2/3 of the ObjectAttributes array would line up with index 0 of the AffineMatrix array. It's kinda weird, but that's just how it works. When we setup functions to read and write these values we'll have to be careful with how we do it. We probably won't want to use those representations above, at least not with the AffineMatrix type, because they're quite wasteful if you want to store just object attributes or just affine matrices.","breadcrumbs":"Concepts » Object Attribute Memory (OAM)","id":"69","title":"Object Attribute Memory (OAM)"},"7":{"body":"Once all the tools are in place, there's particular steps that you need to compile the project. For these to work you'll need some source code to compile. Unlike with other things, an empty main file and/or an empty lib file will cause a total build failure, because we'll need a no_std build, and rust defaults to builds that use the standard library. The next section has a minimal example file you can use (along with explanation), but we'll describe the build steps here. arm-none-eabi-as crt0.s -o target/crt0.o This builds your text format crt0.s file into object format crt0.o that's placed in the target/ directory. Note that if the target/ directory doesn't exist yet it will fail, so you have to make the directory if it's not there. You don't need to rebuild crt0.s every single time, only when it changes, but you might as well throw a line to do it every time into your build script so that you never forget because it's a practically instant operation anyway. cargo xbuild --target thumbv4-none-agb.json This builds your Rust source. It accepts most of the normal options, such as --release , and options, such as --bin foo or --examples , that you'd expect cargo to accept. You can not build and run tests this way, because they require std , which the GBA doesn't have. If you want you can still run some of your project's tests with cargo test --lib or similar, but that builds for your local machine, so anything specific to the GBA (such as reading and writing registers) won't be testable that way. If you want to isolate and try out some piece code running on the GBA you'll unfortunately have to make a demo for it in your examples/ directory and then run the demo in an emulator and see if it does what you expect. The file extension is important! It will work if you forget it, but cargo xbuild takes the inclusion of the extension as a flag to also compile dependencies with the same sysroot, so you can include other crates in your build. Well, crates that work in the GBA's limited environment, but you get the idea. At this point you have an ELF binary that some emulators can execute directly (more on that later). However, if you want a \"real\" ROM that works in all emulators and that you could transfer to a flash cart to play on real hardware there's a little more to do. arm-none-eabi-objcopy -O binary target/thumbv4-none-agb/MODE/BIN_NAME target/ROM_NAME.gba This will perform an objcopy on our program. Here I've named the program arm-none-eabi-objcopy , which is what devkitpro calls their version of objcopy that's specific to the GBA in the Windows install. If the program isn't found under that name, have a look in your installation directory to see if it's under a slightly different name or something. As you can see from reading the man page, the -O binary option takes our lovely ELF file with symbols and all that and strips it down to basically a bare memory dump of the program. The next argument is the input file. You might not be familiar with how cargo arranges stuff in the target/ directory, and between RLS and cargo doc and stuff it gets kinda crowded, so it goes like this: Since our program was built for a non-local target, first we've got a directory named for that target, thumbv4-none-agb/ Next, the \"MODE\" is either debug/ or release/ , depending on if we had the --release flag included. You'll probably only be packing release mode programs all the way into GBA roms, but it works with either mode. Finally, the name of the program. If your program is something out of the project's src/bin/ then it'll be that file's name, or whatever name you configured for the bin in the Cargo.toml file. If your program is something out of the project's examples/ directory there will be a similar examples/ sub-directory first, and then the example's name. The final argument is the output of the objcopy , which I suggest putting at just the top level of the target/ directory. Really it could go anywhere, but if you're using git then it's likely that your .gitignore file is already setup to exclude everything in target/ , so this makes sure that your intermediate game builds don't get checked into your git. gbafix target/ROM_NAME.gba The gbafix tool also comes from devkitpro. The GBA is very picky about a ROM's format, and gbafix patches the ROM's header and such so that it'll work right. Unlike objcopy , this tool is custom built for GBA development, so it works just perfectly without any arguments beyond the file name. The ROM is patched in place, so we don't even need to specify a new destination. And you're finally done! Of course, you probably want to make a script for all that, but it's up to you. On our own project we have it mostly set up within a Makefile.toml which runs using the cargo-make plugin.","breadcrumbs":"Introduction » Compiling","id":"7","title":"Compiling"},"70":{"body":"Address Span (Wait State 0): 0x800_0000 to 0x9FF_FFFF Address Span (Wait State 1): 0xA00_0000 to 0xBFF_FFFF Address Span (Wait State 2): 0xC00_0000 to 0xDFF_FFFF The game's ROM data is a single set of data that's up to 32 megabytes in size. However, that data is mirrored to three different locations in the address space. Depending on which part of the address space you use, it can affect the memory timings involved. TODO: describe WAITCNT here, we won't get a better chance at it. TODO: discuss THUMB vs ARM code and why THUMB is so much faster (because ROM is a 16-bit bus)","breadcrumbs":"Concepts » Game Pak ROM / Flash ROM (ROM)","id":"70","title":"Game Pak ROM / Flash ROM (ROM)"},"71":{"body":"Address Span: 0xE00_0000 to 0xE00FFFF (64k) The actual amount of SRAM available depends on your game pak, and the 64k figure is simply the maximum possible. A particular game pak might have less, and an emulator will likely let you have all 64k if you want. As with other portions of the address space, SRAM has some number of wait cycles per use. As with ROM, you can change the wait cycle settings via the WAITCNT register if the defaults don't work well for your game pak. See the ROM section for full details of how the WAITCNT register works. The game pak SRAM also has only an 8-bit bus, so have fun with that. The GBA Direct Memory Access (DMA) unit cannot access SRAM. Also, you should not write to SRAM with code executing from ROM . Instead, you should move the code to WRAM and execute the save code from there. We'll cover how to handle that eventually.","breadcrumbs":"Concepts » Save RAM (SRAM)","id":"71","title":"Save RAM (SRAM)"},"72":{"body":"GBA Video starts with an IO register called the \"Display Control Register\", and then spirals out from there. You generally have to use Palette RAM (PALRAM), Video RAM (VRAM), Object Attribute Memory (OAM), as well as any number of other IO registers. They all have to work together just right, and there's a lot going on when you first try doing it, so try to take it very slowly as you're learning each step.","breadcrumbs":"Video","id":"72","title":"Video"},"73":{"body":"","breadcrumbs":"Video » RBG15 Color","id":"73","title":"RBG15 Color"},"74":{"body":"","breadcrumbs":"Video » TODO","id":"74","title":"TODO"},"75":{"body":"Besides video effects the GBA still has an okay amount of stuff going on. Obviously you'll want to know how to read the user's button inputs. That can almost go without saying, except that I said it. Each other part can be handled in about any order you like. Using interrupts is perhaps one of the hardest things for us as Rust programmers due to quirks in our compilation process. Our code all gets compiled to 16-bit THUMB instructions, and we don't have a way to mark a function to be compiled using 32-bit ASM instructions instead. However, an interrupt handler must be written in 32-bit ASM instructions for it to work. That means that we have to write our interrupt handler in 32-bit ASM by hand. We'll do it, but I don't think we'll be too happy about it. The Link Cable related stuff is also probably a little harder to test than anything else. Just because link cable emulation isn't always the best, and or you need two GBAs with two flash carts and the cable for hardware testing. Still, we'll try to go over it eventually.","breadcrumbs":"Non-Video","id":"75","title":"Non-Video"},"76":{"body":"It's all well and good to just show a picture, even to show an animation, but if we want a game we have to let the user interact with something.","breadcrumbs":"Non-Video » Buttons","id":"76","title":"Buttons"},"77":{"body":"KEYINPUT, 0x400_0130 , u16 , read only This little u16 stores the status of all the buttons on the GBA, all at once. There's only 10 of them, and we have 16 bits to work with, so that sounds easy. However, there's a bit of a catch. The register follows a \"low-active\" convention, where pressing a button clears that bit until it's released. const NO_BUTTONS_PRESSED: u16 = 0b0000_0011_1111_1111; The buttons are, going up in order from the 0th bit: A B Select Start Right Left Up Down R L Bits above that are not used. However, since the left and right directions, as well as the up and down directions, can never be pressed at the same time, the KEYINPUT register should never read as zero. Of course, the register might read as zero if someone is using an emulator that allows for such inputs, so I wouldn't go so far as to make it be NonZeroU16 or anything like that. When programming, we usually are thinking of what buttons we want to have be pressed instead of buttons we want to have not be pressed . This means that we need an inversion to happen somewhere along the line. The easiest moment of inversion is immediately as you read in from the register and wrap the value up in a newtype. pub fn read_key_input() -> KeyInput { KeyInput(KEYINPUT.read() ^ 0b0000_0011_1111_1111)\n} Now the KeyInput you get can be checked for what buttons are pressed by checking for a set bit like you'd do anywhere else. impl KeyInput { pub fn a_pressed(self) -> bool { (self.0 & A_BIT) > 0 }\n} Note that the current KEYINPUT value changes in real time as the user presses or releases the buttons. To account for this, it's best to read the value just once per game frame and then use that single value as if it was the input across the whole frame. If you've worked with polling input before that should sound totally normal. If not, just remember to call read_key_input once per frame and then use that KeyInput value across the whole frame.","breadcrumbs":"Non-Video » Key Input Register","id":"77","title":"Key Input Register"},"78":{"body":"The keypad only tells you what's currently pressed, but if you want to check what's newly pressed it's not too much harder. All that you do is store the last frame's keys and compare them to the current keys with an XOR . In the gba crate it's called KeyInput::difference . Once you've got the difference between last frame and this frame, you know what changes happened. If something is in the difference and not pressed in the last frame, that means it was newly pressed. If something is in the difference and pressed in the last frame that means it was newly released. If something is not in the difference then there's no change between last frame and this frame.","breadcrumbs":"Non-Video » Detecting New Presses","id":"78","title":"Detecting New Presses"},"79":{"body":"KEYCNT, 0x400_0132 , u16 , read/write This lets you control what keys will trigger a keypad interrupt. Of course, for the actual interrupt to fire you also need to set the IME and IE registers properly. See the Interrupts section for details there. The main thing to know about this register is that the keys are in the exact same order as the key input order. However, with this register they use a high-active convention instead (eg: the bit is active when the button should be pressed as part of the interrupt). In addition to simply having the bits for the buttons, bit 14 is a flag for enabling keypad interrupts (in addition to the flag in the IE register), and bit 15 decides how having more than one button works. If bit 15 is disabled, it's an OR combination (eg: \"press any key to continue\"). If bit 15 is enabled it's an AND combination (eg: \"press A+B+Start+Select to reset\").","breadcrumbs":"Non-Video » Key Interrupt Control","id":"79","title":"Key Interrupt Control"},"8":{"body":"So we know all the steps to build our source, we just need some source. We're beginners, so we'll start small. With normal programming there's usually a console available, so the minimal program prints \"Hello, world\" to the terminal. On a GBA we don't have a terminal and standard out and all that, so the minimal program draws a red, blue, and green dot to the screen. At the lowest level of device programming, it's all Magic Numbers . You write special values to special places and then the hardware does something. A clear API makes every magic number and magic location easy to understand. A clear and good API also prevents you from using the wrong magic number in the wrong place and causing problems for yourself. This is the minimal example to just test that our build system is all set, so just this once we'll go full magic number crazy town, for fun. Ready? Here goes: hello_magic.rs : #![no_std]\n#![feature(start)] #[panic_handler]\nfn panic(_info: &core::panic::PanicInfo) -> ! { loop {}\n} #[start]\nfn main(_argc: isize, _argv: *const *const u8) -> isize { unsafe { (0x400_0000 as *mut u16).write_volatile(0x0403); (0x600_0000 as *mut u16).offset(120 + 80 * 240).write_volatile(0x001F); (0x600_0000 as *mut u16).offset(136 + 80 * 240).write_volatile(0x03E0); (0x600_0000 as *mut u16).offset(120 + 96 * 240).write_volatile(0x7C00); loop {} }\n} Throw that into your project skeleton, build the program, and give it a run. You should see a red, green, and blue dot close-ish to the middle of the screen. If you don't, something already went wrong. Double check things, phone a friend, write your senators, try asking Lokathor or Ketsuban on the Rust Community Discord , until you're eventually able to get your three dots going. Of course, I'm sure you want to know why those numbers are the numbers to use. Well that's what the whole rest of the book is about!","breadcrumbs":"Introduction » Hello, Magic","id":"8","title":"Hello, Magic"},"80":{"body":"","breadcrumbs":"Non-Video » Timers","id":"80","title":"Timers"},"81":{"body":"The GBA has four Direct Memory Access (DMA) units that can be utilized. They're mostly the same in terms of overall operation, but each unit has special rules that make it better suited to a particular task. Please Note: TONC and GBATEK have slightly different concepts of how a DMA unit's registers should be viewed. I've chosen to go by what GBATEK uses.","breadcrumbs":"Non-Video » Direct Memory Access","id":"81","title":"Direct Memory Access"},"82":{"body":"A single DMA unit is controlled through four different IO Registers. Source: ( DMAxSAD , read only) A *const pointer that the DMA reads from. Destination: ( DMAxDAD , read only) A *mut pointer that the DMA writes to. Count: ( DMAxCNT_L , read only) How many transfers to perform. Control: ( DMAxCNT_H , read/write) A register full of bit-flags that controls all sorts of details. Here, the x is replaced with 0 through 3 when utilizing whichever particular DMA unit.","breadcrumbs":"Non-Video » General DMA","id":"82","title":"General DMA"},"83":{"body":"This is either a u32 or u16 address depending on the unit's assigned transfer mode (see Control). The address MUST be aligned. With DMA0 the source must be internal memory. With other DMA units the source can be any non- SRAM location.","breadcrumbs":"Non-Video » Source Address","id":"83","title":"Source Address"},"84":{"body":"As with the Source, this is either a u32 or u16 address depending on the unit's assigned transfer mode (see Control). The address MUST be aligned. With DMA0/1/2 the destination must be internal memory. With DMA3 the destination can be any non- SRAM memory (allowing writes into Game Pak ROM / FlashROM, assuming that your Game Pak hardware supports that).","breadcrumbs":"Non-Video » Destination Address","id":"84","title":"Destination Address"},"85":{"body":"This is a u16 that says how many transfers ( u16 or u32 ) to make. DMA0/1/2 will only actually accept a 14-bit value, while DMA3 will accept a full 16-bit value. A value of 0 instead acts as if you'd used the maximum value for the DMA in question. Put another way, DMA0/1/2 transfer 1 through 0x4000 words, with 0 as the 0x4000 value, and DMA3 transfers 1 through 0x1_0000 words, with 0 as the 0x1_0000 value. The maximum value isn't a very harsh limit. Even in just u16 mode, 0x4000 transfers is 32k, which would for example be all 32k of IWRAM (including your own user stack). If you for some reason do need to transfer more than a single DMA use can move around at once then you can just setup the DMA a second time and keep going.","breadcrumbs":"Non-Video » Count","id":"85","title":"Count"},"86":{"body":"This u16 bit-flag field is where things get wild. Bits 0-4 do nothing Bit 5-6 control how the destination address changes per transfer: 0: Offset +1 1: Offset -1 2: No Change 3: Offset +1 and reload when a Repeat starts (below) Bit 7-8 similarly control how the source address changes per transfer: 0: Offset +1 1: Offset -1 2: No Change 3: Prohibited Bit 9: enables Repeat mode. Bit 10: Transfer u16 (false) or u32 (true) data. Bit 11: \"Game Pak DRQ\" flag. GBATEK says that this is only allowed for DMA3, and also your Game Pak hardware must be equipped to use DRQ mode. I don't even know what DRQ mode is all about, and GBATEK doesn't say much either. If DRQ is set then you must not set the Repeat bit as well. The gba crate simply doesn't bother to expose this flag to users. Bit 12-13: DMA Start: 0: \"Immediate\", which is 2 cycles after requested. 1: VBlank 2: HBlank 3: Special, depending on what DMA unit is involved: DMA0: Prohibited. DMA1/2: Sound FIFO (see the Sound section) DMA3: Video Capture, intended for use with the Repeat flag, performs a transfer per scanline (similar to HBlank) starting at VCOUNT 2 and stopping at VCOUNT 162. Intended for copying things from ROM or camera into VRAM. Bit 14: Interrupt upon DMA complete. Bit 15: Enable this DMA unit.","breadcrumbs":"Non-Video » Control","id":"86","title":"Control"},"87":{"body":"The general technique for using a DMA unit involves first setting the relevent source, destination, and count registers, then setting the appropriate control register value with the Enable bit set. Once the Enable flag is set the appropriate DMA unit will trigger at the assigned time (Bit 12-13). The CPU's operation is halted while any DMA unit is active, until the DMA completes its task. If more than one DMA unit is supposed to be active at once, then the DMA unit with the lower number will activate and complete before any others. When the DMA triggers via Enable , the Source , Destination , and Count values are copied from the GBA's registers into the DMA unit's internal registers. Changes to the DMA unit's internal copy of the data don't affect the values in the GBA registers. Another Enable will read the same values as before. If DMA is triggered via having Repeat active then only the Count is copied in to the DMA unit registers. The Source and Destination are unaffected during a Repeat. The exception to this is if the destination address control value (Bits 5-6) are set to 3 ( 0b11 ), in which case a Repeat will also re-copy the Destination as well as the Count . Once a DMA operation completes, the Enable flag of its Control register will automatically be disabled, unless the Repeat flag is on, in which case the Enable flag is left active. You will have to manually disable it if you don't want the DMA to kick in again over and over at the specified starting time.","breadcrumbs":"Non-Video » DMA Life Cycle","id":"87","title":"DMA Life Cycle"},"88":{"body":"The DMA units cannot access SRAM at all. If you're using HBlank to access any part of the memory that the display controller utilizes ( OAM , PALRAM , VRAM ), you need to have enabled the \"HBlank Interval Free\" bit in the Display Control Register ( DISPCNT ). Whenever DMA is active the CPU is not active, which means that Interrupts will not fire while DMA is happening. This can cause any number of hard to track down bugs. Try to limit your use of the DMA units if you can.","breadcrumbs":"Non-Video » DMA Limitations","id":"88","title":"DMA Limitations"},"89":{"body":"","breadcrumbs":"Non-Video » Sound","id":"89","title":"Sound"},"9":{"body":"","breadcrumbs":"Introduction » Help and Resources","id":"9","title":"Help and Resources"},"90":{"body":"","breadcrumbs":"Non-Video » Interrupts","id":"90","title":"Interrupts"},"91":{"body":"","breadcrumbs":"Non-Video » Link Cable","id":"91","title":"Link Cable"},"92":{"body":"","breadcrumbs":"Non-Video » Game Pak","id":"92","title":"Game Pak"},"93":{"body":"","breadcrumbs":"Examples","id":"93","title":"Examples"}},"length":94,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"7":{"df":2,"docs":{"11":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"/":{"2":{"/":{"3":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"46":{"tf":1.7320508075688772},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.0}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"67":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"x":{"0":{"6":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.0}}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"f":{"0":{"0":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"4":{"0":{"0":{"0":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}},"_":{"0":{"0":{"0":{"0":{"df":3,"docs":{"34":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"0":{"df":1,"docs":{"77":{"tf":1.0}}},"2":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":2,"docs":{"68":{"tf":1.0},"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"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":{}},"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"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":{},"f":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"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":{}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"5":{"6":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"46":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}},"1":{"df":1,"docs":{"86":{"tf":1.0}}},"2":{"3":{"4":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"69":{"tf":1.0}}},"df":3,"docs":{"45":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"3":{"df":2,"docs":{"86":{"tf":1.0},"87":{"tf":1.0}}},"4":{"df":3,"docs":{"79":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"5":{"df":5,"docs":{"28":{"tf":1.0},"45":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":11,"docs":{"12":{"tf":1.0},"28":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":11,"docs":{"11":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.7320508075688772},"53":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":2.8284271247461903}},"k":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"2":{".":{"5":{"df":1,"docs":{"12":{"tf":1.0}}},"9":{"b":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"8":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"21":{"tf":1.0}}},"4":{"0":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"0":{"0":{"1":{"df":0,"docs":{},"f":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"e":{"0":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{"c":{"0":{"0":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"6":{"df":3,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"66":{"tf":1.7320508075688772}},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"63":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":2.23606797749979}},"m":{"b":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"/":{"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"24":{"tf":1.0},"52":{"tf":1.0}}},"1":{"df":1,"docs":{"46":{"tf":2.0}}},"2":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}},"df":13,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}},"k":{"df":2,"docs":{"64":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"df":6,"docs":{"20":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.0},"82":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"4":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}}}}},"df":5,"docs":{"25":{"tf":1.7320508075688772},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"86":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"24":{"tf":1.0},"32":{"tf":1.7320508075688772},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"6":{"4":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":3,"docs":{"24":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"7":{"0":{"0":{"df":0,"docs":{},"k":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"8":{"0":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}}}}},"df":9,"docs":{"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}}},"9":{"6":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"9":{"df":1,"docs":{"33":{"tf":1.0}}},"df":1,"docs":{"86":{"tf":1.0}}},"_":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":1,"docs":{"19":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"df":2,"docs":{"18":{"tf":1.0},"45":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"*":{"b":{")":{"*":{"2":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"f":{")":{"*":{"(":{"b":{"*":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"(":{"b":{"*":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}}},"+":{"b":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"/":{"b":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":1,"docs":{"60":{"tf":1.0}},"i":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.0}},"l":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"33":{"tf":1.0},"66":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"24":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"13":{"tf":1.0},"18":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":24,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":5,"docs":{"21":{"tf":1.0},"26":{"tf":1.7320508075688772},"43":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"39":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":21,"docs":{"17":{"tf":1.0},"18":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":3,"docs":{"26":{"tf":1.4142135623730951},"43":{"tf":1.0},"5":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"25":{"tf":1.0},"40":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"69":{"tf":2.0}}}}}}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"27":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"60":{"tf":1.0}}}}}}},"b":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":1.0}}},"df":1,"docs":{"47":{"tf":1.0}}},"h":{"df":1,"docs":{"41":{"tf":1.0}}},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"22":{"tf":1.4142135623730951}},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"17":{"tf":3.3166247903554},"34":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"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":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"43":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"12":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":14,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"25":{"tf":1.0},"52":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":16,"docs":{"12":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"75":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"26":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"12":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"18":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}}}},"r":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"25":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}}}}},"m":{"df":5,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"y":{"df":5,"docs":{"18":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"m":{"!":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"16":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"52":{"tf":1.4142135623730951},"53":{"tf":3.4641016151377544},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"12":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"44":{"tf":2.0},"45":{"tf":2.8284271247461903},"46":{"tf":1.0},"60":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"84":{"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":1,"docs":{"19":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"r":{"0":{"df":1,"docs":{"69":{"tf":1.0}}},"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"43":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":1,"docs":{"43":{"tf":2.449489742783178}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"11":{"tf":1.0},"20":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"*":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"0":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}},":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"66":{"tf":2.23606797749979},"67":{"tf":2.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"d":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"41":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0}}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":12,"docs":{"12":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.7320508075688772},"66":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":2,"docs":{"27":{"tf":1.0},"77":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}},"df":10,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"28":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"53":{"tf":1.0}},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"21":{"tf":1.0},"26":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"21":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"32":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}},"d":{"df":3,"docs":{"55":{"tf":2.6457513110645907},"56":{"tf":1.7320508075688772},"60":{"tf":1.0}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}}},"o":{"df":8,"docs":{"28":{"tf":1.4142135623730951},"52":{"tf":3.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":2.0},"64":{"tf":1.0}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":42,"docs":{"12":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"24":{"tf":1.7320508075688772},"25":{"tf":2.8284271247461903},"26":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"63":{"tf":2.0},"64":{"tf":1.0},"66":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":2.449489742783178},"79":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":3.3166247903554},"87":{"tf":1.7320508075688772},"88":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"26":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":16,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":2.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":2.449489742783178},"28":{"tf":1.0},"3":{"tf":2.6457513110645907},"40":{"tf":2.23606797749979},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"8":{"tf":1.0}}},"l":{"df":5,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":2.0},"77":{"tf":1.0}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"2":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"26":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"37":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"42":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"a":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":8,"docs":{"48":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"g":{"df":1,"docs":{"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":3.3166247903554},"8":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.6457513110645907},"79":{"tf":1.7320508075688772}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"49":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"69":{"tf":2.23606797749979}}}}}},"c":{":":{"\\":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"\\":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"\\":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"\\":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"75":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":22,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"18":{"tf":1.0},"43":{"tf":1.0},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"42":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":3,"docs":{"5":{"tf":2.23606797749979},"6":{"tf":1.0},"7":{"tf":2.6457513110645907}}}},"t":{"df":3,"docs":{"11":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"t":{"<":{"df":0,"docs":{},"z":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"z":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"24":{"tf":2.449489742783178},"25":{"tf":1.0},"27":{"tf":2.6457513110645907},"28":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"s":{"df":7,"docs":{"21":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":4,"docs":{"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":12,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}}}}},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":13,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"22":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"i":{"df":1,"docs":{"5":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":1,"docs":{"21":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":24,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"75":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"$":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"43":{"tf":1.0},"46":{"tf":2.8284271247461903},"67":{"tf":2.449489742783178},"73":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"7":{"tf":1.0}}},"m":{"a":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"8":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":15,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":2.0},"24":{"tf":1.0},"32":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":2.0},"75":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"5":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"2":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"21":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"g":{"b":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"$":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"df":14,"docs":{"17":{"tf":1.0},"23":{"tf":1.7320508075688772},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"45":{"tf":2.8284271247461903},"46":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"45":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"12":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"16":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}},"i":{"df":11,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":2.0},"43":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"$":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"3":{"2":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"18":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"&":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"27":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":11,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"30":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0}}}}},"w":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"'":{"df":1,"docs":{"87":{"tf":1.0}}},"df":4,"docs":{"39":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"53":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"38":{"tf":1.0}}},":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"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":13,"docs":{"17":{"tf":2.0},"18":{"tf":1.0},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":2.0},"44":{"tf":1.4142135623730951},"5":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"0":{".":{"df":4,"docs":{"16":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.7320508075688772}},"o":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"42":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"42":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"12":{"tf":1.0},"17":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"25":{"tf":1.0},"53":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"46":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"22":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"17":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"17":{"tf":1.0},"21":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"43":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":9,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.23606797749979}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.0}}}}}},"i":{"c":{"df":3,"docs":{"53":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"5":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"3":{"tf":1.0},"7":{"tf":3.1622776601683795}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"79":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"10":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"50":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}}},"v":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"27":{"tf":2.23606797749979},"60":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":2.23606797749979},"60":{"tf":2.0}}}}}},"m":{"a":{"0":{"/":{"1":{"/":{"2":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"86":{"tf":1.0}}},"1":{"/":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":8,"docs":{"71":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.0},"87":{"tf":3.7416573867739413},"88":{"tf":2.23606797749979}},"x":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"c":{"df":5,"docs":{"30":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}}}}},"df":11,"docs":{"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"18":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":1.4142135623730951},"56":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"53":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"4":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":9,"docs":{"12":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}}},"w":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"55":{"tf":1.0}}}},"q":{"df":1,"docs":{"86":{"tf":2.0}}}},"s":{"df":1,"docs":{"12":{"tf":1.0}},"i":{"df":1,"docs":{"12":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"h":{"df":22,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"72":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"77":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"17":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.7320508075688772}}},"h":{"df":1,"docs":{"17":{"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":1,"docs":{"53":{"tf":1.0}}}}}}},"f":{"df":2,"docs":{"11":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"18":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"34":{"tf":1.0},"45":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":6,"docs":{"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"q":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"c":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":16,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":6,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"25":{"tf":1.0},"3":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.7320508075688772},"7":{"tf":2.23606797749979},"8":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"27":{"tf":1.0},"41":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"2":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"n":{"df":5,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"42":{"tf":1.0}}}},"s":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"44":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"40":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":3,"docs":{"21":{"tf":1.0},"4":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"f":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"8":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"19":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.0},"7":{"tf":1.0}}}}},"r":{"df":5,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}},"s":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"86":{"tf":1.0}},"e":{">":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"77":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.0},"52":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":6,"docs":{"22":{"tf":2.0},"23":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":3.605551275463989},"27":{"tf":2.449489742783178},"28":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"34":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"30":{"tf":1.0}}}},"w":{"df":5,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"21":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":10,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"7":{"tf":3.1622776601683795}}},"l":{"df":1,"docs":{"1":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"69":{"tf":1.0}}},"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},"3":{"df":1,"docs":{"69":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}}}},"d":{"df":5,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"t":{"df":4,"docs":{"17":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0}}},"x":{"df":7,"docs":{"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"23":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":2.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":2.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":2.0}}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"11":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":2.23606797749979},"26":{"tf":1.0},"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":17,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":2.6457513110645907},"43":{"tf":1.7320508075688772},"60":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"13":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"7":{"tf":1.0}}},"r":{"c":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"7":{"tf":1.7320508075688772}}}},"df":2,"docs":{"17":{"tf":1.0},"26":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"17":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"df":2,"docs":{"77":{"tf":2.0},"78":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"32":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"16":{"tf":1.4142135623730951},"19":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"61":{"tf":2.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":2,"docs":{"71":{"tf":1.0},"8":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"x":{"8":{"_":{"8":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"$":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.0}}}},"df":0,"docs":{},"i":{"1":{"6":{",":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{",":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":3,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.8284271247461903}}},"z":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":7,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.0},"28":{"tf":1.4142135623730951}},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"g":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"0":{"tf":1.0},"47":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":18,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":2.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"'":{"df":4,"docs":{"12":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}},":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":39,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":2.6457513110645907},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":5,"docs":{"12":{"tf":2.23606797749979},"60":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"c":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":7,"docs":{"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"54":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"8":{"tf":1.0}},"n":{"df":4,"docs":{"26":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}},"df":27,"docs":{"12":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":7,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"n":{"a":{"df":4,"docs":{"23":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"d":{"df":8,"docs":{"12":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"5":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"46":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"26":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"61":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"l":{"df":4,"docs":{"27":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}},"r":{"d":{"df":6,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"75":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"15":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"p":{"df":8,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"34":{"tf":1.0}}},"df":20,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0}}}},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"17":{"tf":1.0},"22":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"i":{"'":{"d":{"df":4,"docs":{"16":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"df":8,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0}}},"v":{"df":3,"docs":{"12":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}},"1":{"6":{"df":5,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"69":{"tf":2.449489742783178}}},"df":0,"docs":{}},"3":{"2":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"1":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":3.1622776601683795},"60":{"tf":2.449489742783178}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"a":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":1,"docs":{"79":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"f":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}},"t":{"df":7,"docs":{"23":{"tf":1.0},"26":{"tf":2.23606797749979},"33":{"tf":2.449489742783178},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":2.0}}}},"df":3,"docs":{"30":{"tf":1.0},"43":{"tf":1.7320508075688772},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"66":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}},"o":{"df":4,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"39":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0}}}}},"p":{"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"5":{"tf":2.449489742783178},"7":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":19,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"39":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"43":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}}},"l":{"a":{"c":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"53":{"tf":1.0},"64":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"64":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":2.449489742783178},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"25":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":3,"docs":{"23":{"tf":1.0},"42":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"27":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"o":{"df":4,"docs":{"47":{"tf":1.7320508075688772},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"8":{"tf":1.0}}},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"17":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"52":{"tf":1.0}}}}},"t":{"'":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":34,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.23606797749979},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"3":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"64":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":5,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"0":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":3,"docs":{"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":2.6457513110645907}}}}}}},"p":{"a":{"d":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"24":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":5,"docs":{"17":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":17,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"3":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":2.23606797749979}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"y":{"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"6":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"26":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"25":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"87":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"25":{"tf":2.23606797749979}}}}}},"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":5,"docs":{"11":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"79":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"17":{"tf":2.23606797749979},"20":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":5,"docs":{"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}},"k":{"df":4,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"75":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"39":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"0":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":7,"docs":{"19":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"t":{"df":9,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"21":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"40":{"tf":1.0},"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"p":{"df":3,"docs":{"18":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":7,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"7":{"tf":1.0}}}},"w":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"16":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"25":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":2.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":7,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}}},"df":11,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":3.605551275463989},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"0":{"4":{"0":{"3":{"df":1,"docs":{"35":{"tf":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":{"34":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"12":{"tf":1.0},"35":{"tf":1.4142135623730951},"8":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"0":{"tf":1.0},"16":{"tf":1.7320508075688772},"7":{"tf":1.0},"79":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":26,"docs":{"1":{"tf":1.0},"12":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":1,"docs":{"7":{"tf":1.0}},"i":{"df":8,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"22":{"tf":1.0},"3":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"r":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":4,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":10,"docs":{"12":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"71":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}},"y":{"b":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"11":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"a":{"df":1,"docs":{"43":{"tf":1.0}},"l":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"23":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"g":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"18":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"11":{"tf":1.0},"18":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"3":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"12":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"60":{"tf":1.0}},"e":{"df":12,"docs":{"19":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.0},"7":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"61":{"tf":1.0}},"u":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"12":{"tf":1.0},"42":{"tf":2.0},"64":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"24":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":21,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"27":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"8":{"tf":2.0},"82":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"12":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":3.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"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":2,"docs":{"19":{"tf":1.0},"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":33,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":2.6457513110645907},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"45":{"tf":1.7320508075688772}}}},"df":3,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"w":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.6457513110645907},"6":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"40":{"tf":2.449489742783178},"41":{"tf":2.0},"42":{"tf":2.0},"43":{"tf":2.6457513110645907},"46":{"tf":1.0},"77":{"tf":1.0}},"e":{"!":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"[":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"24":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"17":{"tf":1.0},"24":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"5":{"tf":2.23606797749979}}}}}}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"13":{"tf":1.0},"23":{"tf":1.4142135623730951},"34":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":5,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":2.449489742783178}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"27":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"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":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"14":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"12":{"tf":1.0},"21":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"h":{"df":3,"docs":{"16":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":1.0}}}},"w":{"df":19,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":2.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":2.449489742783178},"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":6,"docs":{"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"47":{"tf":1.0},"69":{"tf":2.449489742783178},"72":{"tf":1.0},"88":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"7":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.0}},"s":{"df":7,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":3,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"86":{"tf":2.23606797749979}}}}}}},"h":{"df":1,"docs":{"23":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"34":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.7320508075688772}},"e":{":":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"12":{"tf":1.0},"2":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"52":{"tf":1.0}}}}},"n":{"c":{"df":18,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"df":24,"docs":{"17":{"tf":2.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":10,"docs":{"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"19":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":7,"docs":{"30":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772}}}}}}},"r":{"d":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"17":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"17":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"1":{"2":{"0":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"69":{"tf":1.0},"87":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"39":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0}}}}}}},"t":{"df":20,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"42":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"18":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":1.0},"16":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"21":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"k":{"df":5,"docs":{"70":{"tf":1.0},"71":{"tf":2.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"l":{"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"66":{"tf":3.4641016151377544},"67":{"tf":2.449489742783178},"72":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"47":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"45":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}}},"t":{"df":21,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":2.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":5,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"46":{"tf":1.0}}},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"40":{"tf":1.7320508075688772},"55":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"2":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"b":{"df":1,"docs":{"69":{"tf":1.0}}},"c":{"df":2,"docs":{"47":{"tf":1.0},"69":{"tf":1.0}}},"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0}}}}},"r":{"df":9,"docs":{"23":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"21":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"*":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":10,"docs":{"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"8":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0}},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"41":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":3,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":2,"docs":{"11":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":2.8284271247461903},"21":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"37":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"3":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"17":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"26":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"28":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.7320508075688772}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.0},"19":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.23606797749979}}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"19":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"24":{"tf":1.0}}}}},"s":{"df":3,"docs":{"77":{"tf":2.449489742783178},"78":{"tf":2.449489742783178},"79":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"8":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"28":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}},"k":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{".":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"52":{"tf":1.0},"75":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"26":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":17,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"22":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":3.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979}},"m":{"df":3,"docs":{"12":{"tf":1.0},"2":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}},"df":5,"docs":{"42":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":16,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":2.449489742783178},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":3.0},"60":{"tf":1.0},"69":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"20":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"22":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"63":{"tf":1.0}}}},"t":{"df":11,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":2.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"85":{"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":1,"docs":{"52":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"r":{"0":{"/":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"}":{"\"":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772}},"}":{"\"":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"3":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"53":{"tf":1.0}}},":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"32":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"w":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"52":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"1":{"5":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"63":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":20,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":2.0},"3":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"35":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":2.23606797749979},"82":{"tf":2.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"i":{"df":3,"docs":{"39":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"7":{"tf":1.4142135623730951},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"1":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":3,"docs":{"12":{"tf":1.0},"46":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":2,"docs":{"17":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"47":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"47":{"tf":2.0},"53":{"tf":3.0},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"79":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"88":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"61":{"tf":1.0},"75":{"tf":1.0}}}},"df":1,"docs":{"17":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"7":{"tf":2.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":3,"docs":{"26":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"a":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"60":{"tf":1.0}}},"df":1,"docs":{"21":{"tf":1.0}}}}},"df":1,"docs":{"26":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":7,"docs":{"21":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":2.0},"87":{"tf":2.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"17":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"6":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"(":{"c":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"86":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"12":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}},"t":{"df":6,"docs":{"17":{"tf":1.4142135623730951},"3":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"39":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}},"f":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"g":{"b":{"!":{"(":{"3":{"1":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"h":{"df":3,"docs":{"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"l":{"df":1,"docs":{"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"df":6,"docs":{"17":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":2.23606797749979},"71":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"41":{"tf":1.0}}}},"w":{"df":1,"docs":{"63":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"23":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}}}},"n":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"18":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":2.0},"7":{"tf":2.23606797749979},"8":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"21":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"34":{"tf":1.0}}},"df":30,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"12":{"tf":2.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"57":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":16,"docs":{"1":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"w":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":1.0}}},"y":{"df":2,"docs":{"19":{"tf":1.0},"75":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"17":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"47":{"tf":2.0},"52":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"m":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0}}},"n":{"df":1,"docs":{"36":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"0":{"df":1,"docs":{"77":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":2.0},"37":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"36":{"tf":2.0},"37":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"23":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"d":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"21":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"t":{"df":12,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"p":{"df":7,"docs":{"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"w":{"df":5,"docs":{"26":{"tf":1.4142135623730951},"3":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":4,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":2.23606797749979},"60":{"tf":2.23606797749979}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"27":{"tf":1.0},"43":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":18,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}}},"t":{"df":2,"docs":{"17":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"21":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":4,"docs":{"23":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"36":{"tf":2.0},"37":{"tf":3.3166247903554},"53":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}},"w":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"21":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":19,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"36":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":12,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":12,"docs":{"17":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":9,"docs":{"52":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"20":{"tf":1.0}}}},"c":{"df":2,"docs":{"12":{"tf":1.0},"52":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"4":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}},"i":{"df":10,"docs":{"21":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"58":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"71":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}}},"c":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"53":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"34":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"17":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"27":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"14":{"tf":1.0},"16":{"tf":1.7320508075688772},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"33":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"16":{"tf":1.0},"6":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"77":{"tf":1.0}}}},"y":{"df":1,"docs":{"33":{"tf":1.0}}}},"d":{"df":3,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"27":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"47":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"19":{"tf":1.0},"53":{"tf":1.0},"86":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":10,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":1,"docs":{"7":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":2.8284271247461903},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"10":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":10,"docs":{"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"df":3,"docs":{"26":{"tf":1.4142135623730951},"40":{"tf":1.0},"7":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"12":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":2.0},"77":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.0},"69":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.7320508075688772},"5":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}}}},"s":{"df":3,"docs":{"23":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.0},"60":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"t":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":7,"docs":{"17":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"0":{".":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"b":{"a":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.23606797749979},"33":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.8284271247461903}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"61":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":9,"docs":{"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":2.6457513110645907},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"1":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.4142135623730951},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"11":{"tf":1.0},"30":{"tf":1.0},"7":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"7":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"26":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0}}}},"t":{"'":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":19,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":2.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"45":{"tf":1.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":32,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":11,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":29,"docs":{"1":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"k":{"df":12,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.7320508075688772},"39":{"tf":1.0},"53":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":5,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"42":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"w":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"53":{"tf":1.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0}},"v":{"4":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":22,"docs":{"12":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":2.0},"54":{"tf":1.4142135623730951},"6":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"r":{"df":2,"docs":{"17":{"tf":1.0},"80":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":14,"docs":{"17":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"61":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"72":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"l":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"69":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":4,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.7320508075688772}}}},"p":{"df":5,"docs":{"12":{"tf":1.7320508075688772},"22":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"43":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"40":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"30":{"tf":1.0},"33":{"tf":2.23606797749979},"40":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"68":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":2.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0}}}}},"df":23,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"35":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":2.0},"86":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"3":{"tf":1.0},"52":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":12,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":26,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":3.3166247903554},"22":{"tf":3.605551275463989},"23":{"tf":2.23606797749979},"24":{"tf":2.6457513110645907},"25":{"tf":2.23606797749979},"26":{"tf":3.0},"27":{"tf":2.0},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":3.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"21":{"tf":2.23606797749979},"25":{"tf":1.0}}}}}}}}},"u":{"1":{"4":{"df":1,"docs":{"21":{"tf":1.0}}},"6":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"0":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"0":{"4":{"0":{"3":{"df":2,"docs":{"34":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":2.8284271247461903},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"8":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"b":{"df":3,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"21":{"tf":2.0}}}}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":7,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":9,"docs":{"20":{"tf":2.0},"21":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"17":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"64":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":8,"docs":{"2":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"60":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"60":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":2.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"44":{"tf":1.0},"60":{"tf":1.0},"86":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":58,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":2.8284271247461903},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":2.449489742783178},"26":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":2.0},"33":{"tf":2.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":3.0},"44":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"5":{"tf":2.8284271247461903},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":2.0},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":2.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"r":{"'":{"df":2,"docs":{"64":{"tf":1.0},"75":{"tf":1.0}}},"df":6,"docs":{"24":{"tf":1.4142135623730951},"35":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":6,"docs":{"19":{"tf":2.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"45":{"tf":3.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"43":{"tf":1.7320508075688772},"52":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"5":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}}}}},"v":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"22":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":31,"docs":{"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"21":{"tf":2.8284271247461903},"22":{"tf":2.23606797749979},"23":{"tf":2.8284271247461903},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":2.8284271247461903},"28":{"tf":2.23606797749979},"32":{"tf":2.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":2.0},"69":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"8":{"tf":1.0},"85":{"tf":2.6457513110645907},"87":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"39":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":2.0},"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"28":{"tf":1.0},"42":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"71":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":6,"docs":{"2":{"tf":1.0},"47":{"tf":2.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"36":{"tf":1.7320508075688772},"37":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"0":{"df":0,"docs":{},"x":{"4":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"34":{"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":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":5,"docs":{"33":{"tf":2.6457513110645907},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":2.0}}},"u":{"1":{"6":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":1,"docs":{"34":{"tf":1.0}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":2.23606797749979}}},"u":{"1":{"6":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":4,"docs":{"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"37":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":2.6457513110645907},"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"18":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"47":{"tf":1.0},"68":{"tf":2.23606797749979},"72":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"70":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"2":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":39,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"y":{"df":16,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"75":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":3,"docs":{"26":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":28,"docs":{"16":{"tf":1.0},"17":{"tf":2.23606797749979},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":2.0},"37":{"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},"5":{"tf":1.7320508075688772},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"r":{"df":13,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"v":{"df":11,"docs":{"18":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":16,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"61":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"5":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":24,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"4":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"p":{"df":6,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"45":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":2.8284271247461903},"35":{"tf":2.0},"38":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"33":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"44":{"tf":1.0}}}}}}},"x":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"5":{"tf":1.7320508075688772},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"19":{"tf":1.0},"32":{"tf":2.23606797749979},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"40":{"tf":1.0},"47":{"tf":1.0}}},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":10,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"75":{"tf":1.0}}}},"r":{"df":22,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":6,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}},"z":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":9,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"7":{"df":2,"docs":{"11":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"/":{"2":{"/":{"3":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"46":{"tf":1.7320508075688772},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.0}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"67":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"x":{"0":{"6":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.0}}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"f":{"0":{"0":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"4":{"0":{"0":{"0":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}},"_":{"0":{"0":{"0":{"0":{"df":3,"docs":{"34":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"0":{"df":1,"docs":{"77":{"tf":1.0}}},"2":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":2,"docs":{"68":{"tf":1.0},"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"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":{}},"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"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":{},"f":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"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":{}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"5":{"6":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"46":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}},"1":{"df":1,"docs":{"86":{"tf":1.0}}},"2":{"3":{"4":{"df":1,"docs":{"60":{"tf":1.0}}},"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"69":{"tf":1.0}}},"df":3,"docs":{"45":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"3":{"df":2,"docs":{"86":{"tf":1.0},"87":{"tf":1.0}}},"4":{"df":3,"docs":{"79":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"5":{"df":5,"docs":{"28":{"tf":1.0},"45":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":11,"docs":{"12":{"tf":1.0},"28":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":11,"docs":{"11":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.7320508075688772},"53":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":2.8284271247461903}},"k":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"2":{".":{"5":{"df":1,"docs":{"12":{"tf":1.0}}},"9":{"b":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"8":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"21":{"tf":1.0}}},"4":{"0":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"0":{"0":{"1":{"df":0,"docs":{},"f":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"e":{"0":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{"c":{"0":{"0":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"6":{"df":3,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"66":{"tf":1.7320508075688772}},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"63":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":2.23606797749979}},"m":{"b":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"/":{"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"24":{"tf":1.0},"52":{"tf":1.0}}},"1":{"df":1,"docs":{"46":{"tf":2.0}}},"2":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}},"df":13,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}},"k":{"df":2,"docs":{"64":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"df":6,"docs":{"20":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.0},"82":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"4":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}}}}},"df":5,"docs":{"25":{"tf":1.7320508075688772},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"86":{"tf":1.0}}},"5":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"24":{"tf":1.0},"32":{"tf":1.7320508075688772},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"6":{"4":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":3,"docs":{"24":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"7":{"0":{"0":{"df":0,"docs":{},"k":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"8":{"0":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}}}}},"df":9,"docs":{"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}}},"9":{"6":{"df":2,"docs":{"37":{"tf":1.0},"8":{"tf":1.0}},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"9":{"df":1,"docs":{"33":{"tf":1.0}}},"df":1,"docs":{"86":{"tf":1.0}}},"_":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":1,"docs":{"19":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"df":2,"docs":{"18":{"tf":1.0},"45":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"*":{"b":{")":{"*":{"2":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"f":{")":{"*":{"(":{"b":{"*":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"(":{"b":{"*":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}}},"+":{"b":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"/":{"b":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":1,"docs":{"60":{"tf":1.0}},"i":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.0}},"l":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"19":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"33":{"tf":1.0},"66":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"24":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"13":{"tf":1.0},"18":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":24,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":5,"docs":{"21":{"tf":1.0},"26":{"tf":1.7320508075688772},"43":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"39":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":21,"docs":{"17":{"tf":1.0},"18":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"83":{"tf":2.0},"84":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":3,"docs":{"26":{"tf":1.4142135623730951},"43":{"tf":1.0},"5":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"25":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"69":{"tf":2.0}}}}}}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"27":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"60":{"tf":1.0}}}}}}},"b":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":1.0}}},"df":1,"docs":{"47":{"tf":1.0}}},"h":{"df":1,"docs":{"41":{"tf":1.0}}},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"22":{"tf":1.4142135623730951}},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"17":{"tf":3.3166247903554},"34":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"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":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"43":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"12":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":14,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"25":{"tf":1.0},"52":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":16,"docs":{"12":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"75":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"26":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"12":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"18":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}}}},"r":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"25":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}}}}},"m":{"df":5,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"y":{"df":5,"docs":{"18":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"m":{"!":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"16":{"tf":1.4142135623730951},"39":{"tf":2.6457513110645907},"52":{"tf":1.4142135623730951},"53":{"tf":3.605551275463989},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"12":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"44":{"tf":2.23606797749979},"45":{"tf":3.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"84":{"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":1,"docs":{"19":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"r":{"0":{"df":1,"docs":{"69":{"tf":1.0}}},"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"43":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":1,"docs":{"43":{"tf":2.449489742783178}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"11":{"tf":1.0},"20":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"*":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"0":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}},":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"66":{"tf":2.23606797749979},"67":{"tf":2.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"d":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"41":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0}}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":12,"docs":{"12":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.7320508075688772},"66":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":2,"docs":{"27":{"tf":1.0},"77":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}},"df":10,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"28":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"53":{"tf":1.0}},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"21":{"tf":1.0},"26":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"21":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"32":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}},"d":{"df":3,"docs":{"55":{"tf":2.6457513110645907},"56":{"tf":1.7320508075688772},"60":{"tf":1.0}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}}},"o":{"df":8,"docs":{"28":{"tf":1.4142135623730951},"52":{"tf":3.1622776601683795},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":42,"docs":{"12":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"24":{"tf":1.7320508075688772},"25":{"tf":2.8284271247461903},"26":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"63":{"tf":2.0},"64":{"tf":1.0},"66":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":2.0},"77":{"tf":2.449489742783178},"79":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":3.3166247903554},"87":{"tf":1.7320508075688772},"88":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"33":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"26":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"41":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":16,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":2.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":2.449489742783178},"28":{"tf":1.0},"3":{"tf":2.8284271247461903},"40":{"tf":2.23606797749979},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"8":{"tf":1.0}}},"l":{"df":5,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":2.0},"77":{"tf":1.0}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"2":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"26":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"37":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"42":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"a":{"d":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":8,"docs":{"48":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"g":{"df":1,"docs":{"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":3.3166247903554},"8":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":2.6457513110645907},"79":{"tf":1.7320508075688772}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"49":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"69":{"tf":2.23606797749979}}}}}},"c":{":":{"\\":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"\\":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"\\":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"\\":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"75":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":22,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"18":{"tf":1.0},"43":{"tf":1.0},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"42":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":3,"docs":{"5":{"tf":2.23606797749979},"6":{"tf":1.0},"7":{"tf":2.6457513110645907}}}},"t":{"df":3,"docs":{"11":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"t":{"<":{"df":0,"docs":{},"z":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"z":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"24":{"tf":2.6457513110645907},"25":{"tf":1.0},"27":{"tf":2.6457513110645907},"28":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"s":{"df":7,"docs":{"21":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":4,"docs":{"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.0},"24":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":12,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}}}}},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":13,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"22":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"i":{"df":1,"docs":{"5":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.23606797749979},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}},"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":1,"docs":{"21":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":24,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"75":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"$":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"43":{"tf":1.0},"46":{"tf":2.8284271247461903},"67":{"tf":2.449489742783178},"73":{"tf":1.4142135623730951}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"7":{"tf":1.0}}},"m":{"a":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"17":{"tf":1.0},"8":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":15,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":2.0},"24":{"tf":1.0},"32":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"5":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":27,"docs":{"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"47":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}},"u":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"2":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"21":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"g":{"b":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"$":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}},"r":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}}},"df":14,"docs":{"17":{"tf":1.0},"23":{"tf":1.7320508075688772},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"45":{"tf":3.0},"46":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"45":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"12":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"16":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}},"i":{"df":11,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":2.0},"43":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"$":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"3":{"2":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"18":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"&":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"27":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":11,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"30":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0}}}}},"w":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"'":{"df":1,"docs":{"87":{"tf":1.0}}},"df":4,"docs":{"39":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"53":{"tf":1.0},"64":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"38":{"tf":1.0}}},":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"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":13,"docs":{"17":{"tf":2.0},"18":{"tf":1.0},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"44":{"tf":1.4142135623730951},"5":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"0":{".":{"df":4,"docs":{"16":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.7320508075688772}},"o":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"42":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"42":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.0},"7":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"12":{"tf":1.0},"17":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"25":{"tf":1.0},"53":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"46":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"22":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"17":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"17":{"tf":1.0},"21":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"43":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":9,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"24":{"tf":1.0},"31":{"tf":1.4142135623730951},"7":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":2.23606797749979}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"7":{"tf":1.0}}}}}},"i":{"c":{"df":3,"docs":{"53":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"5":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"3":{"tf":1.0},"7":{"tf":3.1622776601683795}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"79":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"10":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"50":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}}},"v":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"27":{"tf":2.23606797749979},"60":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":4,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":2.449489742783178},"60":{"tf":2.23606797749979}}}}}},"m":{"a":{"0":{"/":{"1":{"/":{"2":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"86":{"tf":1.0}}},"1":{"/":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":8,"docs":{"71":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.0},"87":{"tf":3.872983346207417},"88":{"tf":2.449489742783178}},"x":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"c":{"df":5,"docs":{"30":{"tf":1.0},"38":{"tf":1.7320508075688772},"43":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}}}}},"df":11,"docs":{"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"18":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":1.4142135623730951},"56":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"53":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"4":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":9,"docs":{"12":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"21":{"tf":1.0}}},"w":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"55":{"tf":1.0}}}},"q":{"df":1,"docs":{"86":{"tf":2.0}}}},"s":{"df":1,"docs":{"12":{"tf":1.0}},"i":{"df":1,"docs":{"12":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"h":{"df":22,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"72":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"77":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"17":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.7320508075688772}}},"h":{"df":1,"docs":{"17":{"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":1,"docs":{"53":{"tf":1.0}}}}}}},"f":{"df":2,"docs":{"11":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":2.0},"18":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"34":{"tf":1.0},"45":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178},"88":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":6,"docs":{"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"q":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"c":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":16,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":6,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"25":{"tf":1.0},"3":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":2.0},"7":{"tf":2.23606797749979},"8":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"27":{"tf":1.0},"41":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.0},"52":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"2":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"n":{"df":5,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"42":{"tf":1.0}}}},"s":{"df":1,"docs":{"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"44":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"40":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772}}}}},"r":{"a":{"df":3,"docs":{"21":{"tf":1.0},"4":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"f":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"8":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"19":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"57":{"tf":1.0},"7":{"tf":1.0}}}}},"r":{"df":5,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}},"s":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"86":{"tf":1.0}},"e":{">":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"77":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.0},"52":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":6,"docs":{"22":{"tf":2.0},"23":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":3.605551275463989},"27":{"tf":2.449489742783178},"28":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"34":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"30":{"tf":1.0}}}},"w":{"df":5,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"21":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":10,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"7":{"tf":3.1622776601683795}}},"l":{"df":1,"docs":{"1":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"69":{"tf":1.0}}},"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},"3":{"df":1,"docs":{"69":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}}}},"d":{"df":5,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"t":{"df":4,"docs":{"17":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0}}},"x":{"df":7,"docs":{"20":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"23":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":2.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":2.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":2.0}}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"11":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":2.23606797749979},"26":{"tf":1.0},"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":17,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":2.6457513110645907},"43":{"tf":1.7320508075688772},"60":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"13":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"7":{"tf":1.0}}},"r":{"c":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"7":{"tf":1.7320508075688772}}}},"df":2,"docs":{"17":{"tf":1.0},"26":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"17":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"df":2,"docs":{"77":{"tf":2.0},"78":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"32":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"17":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"16":{"tf":1.4142135623730951},"19":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":2.23606797749979},"69":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":2,"docs":{"71":{"tf":1.0},"8":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":1,"docs":{"33":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"x":{"8":{"_":{"8":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"$":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.0}}}},"df":0,"docs":{},"i":{"1":{"6":{",":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{",":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":3,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.8284271247461903}}},"z":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":7,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.0},"28":{"tf":1.4142135623730951}},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"g":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"0":{"tf":1.0},"47":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":18,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":2.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"'":{"df":4,"docs":{"12":{"tf":1.0},"47":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}},":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":39,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":2.6457513110645907},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":5,"docs":{"12":{"tf":2.23606797749979},"60":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"c":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":7,"docs":{"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"54":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"8":{"tf":1.0}},"n":{"df":4,"docs":{"26":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.7320508075688772}}}},"df":27,"docs":{"12":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":7,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"n":{"a":{"df":4,"docs":{"23":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"d":{"df":8,"docs":{"12":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"5":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"46":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"26":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"61":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"l":{"df":4,"docs":{"27":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}},"r":{"d":{"df":6,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"75":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"15":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"8":{"tf":1.7320508075688772}}}},"p":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"34":{"tf":1.0}}},"df":20,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0}}}},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"17":{"tf":1.0},"22":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"i":{"'":{"d":{"df":4,"docs":{"16":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"df":8,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0}}},"v":{"df":3,"docs":{"12":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}},"1":{"6":{"df":5,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"69":{"tf":2.449489742783178}}},"df":0,"docs":{}},"3":{"2":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"1":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":3.1622776601683795},"60":{"tf":2.449489742783178}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"a":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":1,"docs":{"79":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"f":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}},"t":{"df":7,"docs":{"23":{"tf":1.0},"26":{"tf":2.23606797749979},"33":{"tf":2.449489742783178},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":2.0}}}},"df":3,"docs":{"30":{"tf":1.0},"43":{"tf":1.7320508075688772},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"66":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}},"o":{"df":4,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"39":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.6457513110645907}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0}}}}},"p":{"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.23606797749979},"79":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"5":{"tf":2.449489742783178},"7":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":19,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"39":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"43":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}}},"l":{"a":{"c":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"53":{"tf":1.0},"64":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"64":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":2.6457513110645907},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"v":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":2.449489742783178}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"25":{"tf":1.0}},"t":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":3,"docs":{"23":{"tf":1.0},"42":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"27":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"o":{"df":4,"docs":{"47":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"8":{"tf":1.0}}},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"34":{"tf":1.0},"37":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"17":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"52":{"tf":1.0}}}}},"t":{"'":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":34,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.23606797749979},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"3":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":2.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"64":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":5,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"0":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":3,"docs":{"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":2.6457513110645907}}}}}}},"p":{"a":{"d":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"24":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":5,"docs":{"17":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":17,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"3":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":2.23606797749979}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"y":{"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"6":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"26":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"25":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"87":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"25":{"tf":2.23606797749979}}}}}},"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":5,"docs":{"11":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"79":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"17":{"tf":2.449489742783178},"20":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"87":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":5,"docs":{"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}},"k":{"df":4,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"75":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"39":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"0":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":7,"docs":{"19":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"t":{"df":9,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"21":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"40":{"tf":1.0},"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"p":{"df":3,"docs":{"18":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":7,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"7":{"tf":1.0}}}},"w":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"16":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"25":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":2.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":7,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}}},"df":11,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":3.7416573867739413},"43":{"tf":1.7320508075688772},"45":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"0":{"4":{"0":{"3":{"df":1,"docs":{"35":{"tf":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":{"34":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"12":{"tf":1.0},"35":{"tf":1.4142135623730951},"8":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"0":{"tf":1.0},"16":{"tf":1.7320508075688772},"7":{"tf":1.0},"79":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":26,"docs":{"1":{"tf":1.0},"12":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":1,"docs":{"7":{"tf":1.0}},"i":{"df":8,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"22":{"tf":1.0},"3":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"r":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":4,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":10,"docs":{"12":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"71":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}},"y":{"b":{"df":3,"docs":{"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"11":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"a":{"df":1,"docs":{"43":{"tf":1.0}},"l":{"df":2,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"23":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"g":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"18":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"11":{"tf":1.0},"18":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"3":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"12":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"60":{"tf":1.0}},"e":{"df":12,"docs":{"19":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.0},"7":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"61":{"tf":1.0}},"u":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"12":{"tf":1.0},"42":{"tf":2.0},"64":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"24":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":21,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"27":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":2.0},"28":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"8":{"tf":2.0},"82":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"12":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":3.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"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":2,"docs":{"19":{"tf":1.0},"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":33,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":2.6457513110645907},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"45":{"tf":1.7320508075688772}}}},"df":3,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"w":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.6457513110645907},"6":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"40":{"tf":2.6457513110645907},"41":{"tf":2.23606797749979},"42":{"tf":2.0},"43":{"tf":2.6457513110645907},"46":{"tf":1.0},"77":{"tf":1.0}},"e":{"!":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"[":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"24":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"17":{"tf":1.0},"24":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"5":{"tf":2.23606797749979}}}}}}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"13":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"34":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"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}},"e":{"df":5,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":2.449489742783178}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"27":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"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":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"14":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"12":{"tf":1.0},"21":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"h":{"df":3,"docs":{"16":{"tf":1.0},"68":{"tf":1.0},"86":{"tf":1.0}}}},"w":{"df":19,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":2.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":2.449489742783178},"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":6,"docs":{"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"47":{"tf":1.0},"69":{"tf":2.6457513110645907},"72":{"tf":1.0},"88":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.0}},"s":{"df":7,"docs":{"34":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"15":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":3,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"86":{"tf":2.23606797749979}}}}}}},"h":{"df":1,"docs":{"23":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"34":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.7320508075688772}},"e":{":":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"12":{"tf":1.0},"2":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"52":{"tf":1.0}}}}},"n":{"c":{"df":18,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"df":24,"docs":{"17":{"tf":2.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":10,"docs":{"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"7":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"19":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0},"52":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":7,"docs":{"30":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":2.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772}}}}}}},"r":{"d":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"17":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"17":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"1":{"2":{"0":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"69":{"tf":1.0},"87":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"39":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0}}}}}}},"t":{"df":20,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"42":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"18":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":1.0},"16":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"21":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"k":{"df":5,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":2.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"l":{"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"66":{"tf":3.605551275463989},"67":{"tf":2.449489742783178},"72":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"47":{"tf":1.0},"66":{"tf":2.0},"68":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"17":{"tf":1.0},"18":{"tf":2.0},"45":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}}}}},"t":{"df":21,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":2.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":5,"docs":{"22":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"46":{"tf":1.0}}},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"40":{"tf":1.7320508075688772},"55":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"2":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"b":{"df":1,"docs":{"69":{"tf":1.0}}},"c":{"df":2,"docs":{"47":{"tf":1.0},"69":{"tf":1.0}}},"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0}}}}},"r":{"df":9,"docs":{"23":{"tf":1.0},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"21":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"*":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":10,"docs":{"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"8":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0}},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"41":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":3,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":2,"docs":{"11":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":2.8284271247461903},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"37":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"3":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"17":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"26":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"28":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.7320508075688772}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.0},"19":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.23606797749979}}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"19":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"24":{"tf":1.0}}}}},"s":{"df":3,"docs":{"77":{"tf":2.449489742783178},"78":{"tf":2.6457513110645907},"79":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"8":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"28":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}},"k":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{".":{"d":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"64":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"52":{"tf":1.0},"75":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"26":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":17,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"22":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":3.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979}},"m":{"df":3,"docs":{"12":{"tf":1.0},"2":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}},"df":5,"docs":{"42":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":16,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":2.449489742783178},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":3.0},"60":{"tf":1.0},"69":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"20":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"22":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"63":{"tf":1.0}}}},"t":{"df":11,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":2.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"85":{"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":1,"docs":{"52":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":34,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"r":{"0":{"/":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"}":{"\"":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772}},"}":{"\"":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"3":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"53":{"tf":1.0}}},":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"32":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"w":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"52":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"1":{"5":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"63":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":20,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":2.0},"3":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"35":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":2.23606797749979},"82":{"tf":2.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"i":{"df":3,"docs":{"39":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"7":{"tf":1.4142135623730951},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"1":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":3,"docs":{"12":{"tf":1.0},"46":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":2,"docs":{"17":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"47":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"47":{"tf":2.0},"53":{"tf":3.0},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"79":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"88":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"61":{"tf":1.0},"75":{"tf":1.0}}}},"df":1,"docs":{"17":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"7":{"tf":2.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":3,"docs":{"26":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"a":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"60":{"tf":1.0}}},"df":1,"docs":{"21":{"tf":1.0}}}}},"df":1,"docs":{"26":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":7,"docs":{"21":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":2.0},"87":{"tf":2.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"17":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"6":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"(":{"c":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"86":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"12":{"tf":2.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}},"t":{"df":6,"docs":{"17":{"tf":1.4142135623730951},"3":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"16":{"tf":1.0},"19":{"tf":1.0},"39":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}},"f":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"g":{"b":{"!":{"(":{"3":{"1":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"h":{"df":3,"docs":{"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"l":{"df":1,"docs":{"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"df":6,"docs":{"17":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":2.8284271247461903},"71":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"41":{"tf":1.0}}}},"w":{"df":1,"docs":{"63":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"23":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}}}},"n":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"18":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":2.0},"7":{"tf":2.23606797749979},"8":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"21":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"34":{"tf":1.0}}},"df":30,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"57":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":16,"docs":{"1":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"w":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":1.0}}},"y":{"df":2,"docs":{"19":{"tf":1.0},"75":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"17":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"47":{"tf":2.0},"52":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"m":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0}}},"n":{"df":1,"docs":{"36":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"0":{"df":1,"docs":{"77":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":2.0},"37":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"36":{"tf":2.0},"37":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"23":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"d":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"21":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}},"t":{"df":12,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"p":{"df":7,"docs":{"39":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":2.23606797749979},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"w":{"df":5,"docs":{"26":{"tf":1.4142135623730951},"3":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":4,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":2.23606797749979},"60":{"tf":2.23606797749979}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"27":{"tf":1.0},"43":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":18,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}}},"t":{"df":2,"docs":{"17":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"21":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":4,"docs":{"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"36":{"tf":2.0},"37":{"tf":3.3166247903554},"53":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}},"w":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"21":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":19,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"36":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"c":{"df":12,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":12,"docs":{"17":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":9,"docs":{"52":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"17":{"tf":1.0},"20":{"tf":1.0}}}},"c":{"df":2,"docs":{"12":{"tf":1.0},"52":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"4":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951}},"i":{"df":10,"docs":{"21":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"58":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"71":{"tf":2.6457513110645907},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}}},"c":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"53":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"34":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"17":{"tf":2.6457513110645907},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"27":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"14":{"tf":1.0},"16":{"tf":1.7320508075688772},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"33":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"16":{"tf":1.0},"6":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"77":{"tf":1.0}}}},"y":{"df":1,"docs":{"33":{"tf":1.0}}}},"d":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"27":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"47":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"19":{"tf":1.0},"53":{"tf":1.0},"86":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":10,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":1,"docs":{"7":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":2.8284271247461903},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"10":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":10,"docs":{"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"17":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951},"42":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"df":3,"docs":{"26":{"tf":1.4142135623730951},"40":{"tf":1.0},"7":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"12":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":2.0},"77":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.0},"69":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.7320508075688772},"5":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}}}},"s":{"df":3,"docs":{"23":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.0},"60":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"t":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":7,"docs":{"17":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"0":{".":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"b":{"a":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":2.23606797749979},"33":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.8284271247461903}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"61":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":9,"docs":{"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":2.6457513110645907},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"12":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"1":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.4142135623730951},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"11":{"tf":1.0},"30":{"tf":1.0},"7":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"7":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"26":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0}}}},"t":{"'":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":19,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":2.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"45":{"tf":1.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":32,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":11,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":29,"docs":{"1":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"k":{"df":12,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.7320508075688772},"39":{"tf":1.0},"53":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":5,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"42":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"w":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"53":{"tf":1.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0}},"v":{"4":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":22,"docs":{"12":{"tf":1.0},"17":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":2.0},"54":{"tf":1.4142135623730951},"6":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"r":{"df":2,"docs":{"17":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":14,"docs":{"17":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"61":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"72":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"l":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"69":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":4,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.7320508075688772}}}},"p":{"df":5,"docs":{"12":{"tf":1.7320508075688772},"22":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.4142135623730951},"43":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"40":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"30":{"tf":1.0},"33":{"tf":2.23606797749979},"40":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"68":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":2.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0}}}}},"df":23,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"35":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":2.0},"86":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"3":{"tf":1.0},"52":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":12,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":26,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":3.3166247903554},"22":{"tf":3.605551275463989},"23":{"tf":2.23606797749979},"24":{"tf":2.6457513110645907},"25":{"tf":2.23606797749979},"26":{"tf":3.0},"27":{"tf":2.0},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":3.1622776601683795},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"21":{"tf":2.23606797749979},"25":{"tf":1.0}}}}}}}}},"u":{"1":{"4":{"df":1,"docs":{"21":{"tf":1.0}}},"6":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"0":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"0":{"4":{"0":{"3":{"df":2,"docs":{"34":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":2.8284271247461903},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"u":{"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"8":{"df":5,"docs":{"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"b":{"df":3,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"21":{"tf":2.0}}}}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":7,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":9,"docs":{"20":{"tf":2.0},"21":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"17":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"64":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":8,"docs":{"2":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"60":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"60":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":2.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"44":{"tf":1.0},"60":{"tf":1.0},"86":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":58,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":2.8284271247461903},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":2.449489742783178},"26":{"tf":2.0},"30":{"tf":1.7320508075688772},"32":{"tf":2.0},"33":{"tf":2.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":3.0},"44":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"5":{"tf":2.8284271247461903},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":2.0},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":2.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"r":{"'":{"df":2,"docs":{"64":{"tf":1.0},"75":{"tf":1.0}}},"df":6,"docs":{"24":{"tf":1.4142135623730951},"35":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":6,"docs":{"19":{"tf":2.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"45":{"tf":3.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"43":{"tf":1.7320508075688772},"52":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"5":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}}}}},"v":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"22":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":31,"docs":{"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"21":{"tf":3.0},"22":{"tf":2.23606797749979},"23":{"tf":3.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":2.8284271247461903},"28":{"tf":2.23606797749979},"32":{"tf":2.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":2.0},"69":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"8":{"tf":1.0},"85":{"tf":2.6457513110645907},"87":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"39":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":2.0},"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"28":{"tf":1.0},"42":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"71":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":24,"docs":{"2":{"tf":1.0},"47":{"tf":2.0},"68":{"tf":1.7320508075688772},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"36":{"tf":1.7320508075688772},"37":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"0":{"df":0,"docs":{},"x":{"4":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"34":{"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":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":5,"docs":{"33":{"tf":2.6457513110645907},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":2.0}}},"u":{"1":{"6":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":1,"docs":{"34":{"tf":1.0}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":2.23606797749979}}},"u":{"1":{"6":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"33":{"tf":1.7320508075688772},"34":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"37":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":2.6457513110645907},"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"18":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":2.0},"39":{"tf":2.449489742783178},"40":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"47":{"tf":1.0},"68":{"tf":2.449489742783178},"72":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"70":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"2":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":39,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"y":{"df":16,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"75":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":3,"docs":{"26":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":28,"docs":{"16":{"tf":1.0},"17":{"tf":2.23606797749979},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":2.0},"37":{"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},"5":{"tf":1.7320508075688772},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"r":{"df":13,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"v":{"df":11,"docs":{"18":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":16,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":7,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"33":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"61":{"tf":1.0},"88":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"5":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":24,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"4":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"p":{"df":6,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"45":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"b":{"a":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":2.8284271247461903},"35":{"tf":2.0},"38":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"33":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"44":{"tf":1.0}}}}}}},"x":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"5":{"tf":1.7320508075688772},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":3,"docs":{"19":{"tf":1.0},"32":{"tf":2.23606797749979},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"40":{"tf":1.0},"47":{"tf":1.0}}},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":10,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"75":{"tf":1.0}}}},"r":{"df":22,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":6,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"19":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}},"z":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":9,"docs":{"19":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":3,"docs":{"39":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"16":{"tf":1.0},"18":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":4,"docs":{"52":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"48":{"tf":1.0}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"c":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":1,"docs":{"45":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"79":{"tf":1.0},"86":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"31":{"tf":1.0},"84":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"28":{"tf":1.0},"60":{"tf":1.0}}}}}},"m":{"a":{"df":3,"docs":{"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"o":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"60":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"70":{"tf":1.0},"92":{"tf":1.0}}}}},"b":{"a":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"8":{"tf":1.0}}}},"p":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"79":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":1,"docs":{"65":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"77":{"tf":1.0},"79":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"32":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"18":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"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":1,"docs":{"27":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}},"w":{"df":1,"docs":{"78":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"75":{"tf":1.0}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"70":{"tf":1.0},"92":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"1":{"5":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"77":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"12":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":2,"docs":{"30":{"tf":1.0},"35":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":3,"docs":{"68":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}}}},"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file diff --git a/docs/tomorrow-night.css b/docs/tomorrow-night.css deleted file mode 100644 index 9788e08..0000000 --- a/docs/tomorrow-night.css +++ /dev/null @@ -1,96 +0,0 @@ -/* Tomorrow Night Theme */ -/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ -/* Original theme - https://github.com/chriskempson/tomorrow-theme */ -/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ - -/* Tomorrow Comment */ -.hljs-comment { - color: #969896; -} - -/* Tomorrow Red */ -.hljs-variable, -.hljs-attribute, -.hljs-tag, -.hljs-regexp, -.ruby .hljs-constant, -.xml .hljs-tag .hljs-title, -.xml .hljs-pi, -.xml .hljs-doctype, -.html .hljs-doctype, -.css .hljs-id, -.css .hljs-class, -.css .hljs-pseudo { - color: #cc6666; -} - -/* Tomorrow Orange */ -.hljs-number, -.hljs-preprocessor, -.hljs-pragma, -.hljs-built_in, -.hljs-literal, -.hljs-params, -.hljs-constant { - color: #de935f; -} - -/* Tomorrow Yellow */ -.ruby .hljs-class .hljs-title, -.css .hljs-rule .hljs-attribute { - color: #f0c674; -} - -/* Tomorrow Green */ -.hljs-string, -.hljs-value, -.hljs-inheritance, -.hljs-header, -.hljs-name, -.ruby .hljs-symbol, -.xml .hljs-cdata { - color: #b5bd68; -} - -/* Tomorrow Aqua */ -.hljs-title, -.css .hljs-hexcolor { - color: #8abeb7; -} - -/* Tomorrow Blue */ -.hljs-function, -.python .hljs-decorator, -.python .hljs-title, -.ruby .hljs-function .hljs-title, -.ruby .hljs-title .hljs-keyword, -.perl .hljs-sub, -.javascript .hljs-title, -.coffeescript .hljs-title { - color: #81a2be; -} - -/* Tomorrow Purple */ -.hljs-keyword, -.javascript .hljs-function { - color: #b294bb; -} - -.hljs { - display: block; - overflow-x: auto; - background: #1d1f21; - color: #c5c8c6; - padding: 0.5em; - -webkit-text-size-adjust: none; -} - -.coffeescript .javascript, -.javascript .xml, -.tex .hljs-formula, -.xml .javascript, -.xml .vbscript, -.xml .css, -.xml .hljs-cdata { - opacity: 0.5; -} diff --git a/examples/bg_demo.rs b/examples/bg_demo.rs index 472233c..515bd7e 100644 --- a/examples/bg_demo.rs +++ b/examples/bg_demo.rs @@ -29,8 +29,8 @@ fn main(_argc: isize, _argv: *const *const u8) -> isize { set_bg_tile_4bpp(0, 0, ALL_TWOS); set_bg_tile_4bpp(0, 1, ALL_THREES); // screenblock - let light_entry = TextScreenblockEntry::from_tile_index(0); - let dark_entry = TextScreenblockEntry::from_tile_index(1); + let light_entry = TextScreenblockEntry::from_tile_id(0); + let dark_entry = TextScreenblockEntry::from_tile_id(1); checker_screenblock(8, light_entry, dark_entry); // bg0 control BG0CNT.write(BackgroundControlSetting::new().with_screen_base_block(8)); diff --git a/src/base/volatile.rs b/src/base/volatile.rs index 1ae8ae6..5d44beb 100644 --- a/src/base/volatile.rs +++ b/src/base/volatile.rs @@ -118,8 +118,7 @@ impl VolAddress { /// # Safety /// /// You must follow the standard safety rules as outlined in the type docs. - pub unsafe fn offset(self, offset: isize) -> Self { - // TODO: const this + pub const unsafe fn offset(self, offset: isize) -> Self { VolAddress { address: NonZeroUsize::new_unchecked(self.address.get().wrapping_add(offset as usize * core::mem::size_of::())), marker: PhantomData, @@ -135,8 +134,7 @@ impl VolAddress { /// from the operation or throw a `debug_assert!` or something instead of /// triggering UB. Eventually this will be `const fn`, which will potentially /// let you spot errors without even having to run your program. - pub fn is_aligned(self) -> bool { - // TODO: const this + pub const fn is_aligned(self) -> bool { self.address.get() % core::mem::align_of::() == 0 } @@ -276,8 +274,7 @@ impl VolAddressBlock { /// # Safety /// /// The slot given must be in bounds. - pub unsafe fn index_unchecked(self, slot: usize) -> VolAddress { - // TODO: const this + pub const unsafe fn index_unchecked(self, slot: usize) -> VolAddress { self.vol_address.offset(slot as isize) } diff --git a/src/bios.rs b/src/bios.rs index bfdf0da..175446f 100644 --- a/src/bios.rs +++ b/src/bios.rs @@ -8,7 +8,7 @@ //! whatever value is necessary for that function). Some functions also perform //! necessary checks to save you from yourself, such as not dividing by zero. -use super::bool_bits; +use super::*; //TODO: ALL functions in this module should have `if cfg!(test)` blocks. The //functions that never return must panic, the functions that return nothing @@ -104,24 +104,21 @@ pub unsafe fn register_ram_reset(flags: RegisterRAMResetFlags) { } newtype! { /// Flags for use with `register_ram_reset`. - #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] RegisterRAMResetFlags, u8 } #[allow(missing_docs)] impl RegisterRAMResetFlags { - bool_bits!( - u8, - [ - (0, ewram), - (1, iwram), - (2, palram), - (3, vram), - (4, oam), - (5, sio), - (6, sound), - (7, other_io), - ] - ); + phantom_fields! { + self.0: u8, + ewram: 0, + iwram: 1, + palram: 2, + vram: 3, + oam: 4, + sio: 5, + sound: 6, + other_io: 7, + } } /// (`swi 0x02`) Halts the CPU until an interrupt occurs. diff --git a/src/ewram.rs b/src/ewram.rs new file mode 100644 index 0000000..9f37006 --- /dev/null +++ b/src/ewram.rs @@ -0,0 +1 @@ +//! Module for External Work RAM (`EWRAM`). diff --git a/src/io.rs b/src/io.rs index 366a2a4..076813b 100644 --- a/src/io.rs +++ b/src/io.rs @@ -9,7 +9,10 @@ use super::*; pub mod background; +pub mod color_blend; pub mod display; pub mod dma; pub mod keypad; +pub mod sound; pub mod timers; +pub mod window; diff --git a/src/io/background.rs b/src/io/background.rs index abe1a31..493fb59 100644 --- a/src/io/background.rs +++ b/src/io/background.rs @@ -21,21 +21,19 @@ newtype! { /// Bit 8-12: Screen Base Block (0 through 31, 2k each) /// Bit 13: Display area overflow wraps (otherwise transparent, affine BG only) /// Bit 14-15: Screen Size - #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] BackgroundControlSetting, u16 } impl BackgroundControlSetting { - bool_bits!(u16, [(6, mosaic), (7, is_8bpp), (13, display_overflow_wrapping)]); - - multi_bits!( - u16, - [ - (0, 2, bg_priority), - (2, 2, char_base_block), - (8, 5, screen_base_block), - (2, 2, size, BGSize, Zero, One, Two, Three), - ] - ); + phantom_fields! { + self.0: u16, + bg_priority: 0-1, + char_base_block: 2-3, + mosaic: 6, + is_8bpp: 7, + screen_base_block: 8-12, + affine_display_overflow_wrapping: 13, + size: 14-15=BGSize, + } } /// The size of a background. diff --git a/src/io/color_blend.rs b/src/io/color_blend.rs new file mode 100644 index 0000000..a1d041f --- /dev/null +++ b/src/io/color_blend.rs @@ -0,0 +1,66 @@ +//! Module that holds stuff for the color blending ability. + +use super::*; + +/// Color Special Effects Selection (R/W) +pub const BLDCNT: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0050) }; + +newtype! { + ColorEffectSetting, u16 +} + +impl ColorEffectSetting { + phantom_fields! { + self.0: u16, + bg0_1st_target_pixel: 0, + bg1_1st_target_pixel: 1, + bg2_1st_target_pixel: 2, + bg3_1st_target_pixel: 3, + obj_1st_target_pixel: 4, + backdrop_1st_target_pixel: 5, + color_special_effect: 6-7=ColorSpecialEffect, + bg0_2nd_target_pixel: 8, + bg1_2nd_target_pixel: 9, + bg2_2nd_target_pixel: 10, + bg3_2nd_target_pixel: 11, + obj_2nd_target_pixel: 12, + backdrop_2nd_target_pixel: 13, + } +} + +newtype_enum! { + ColorSpecialEffect = u16, + None = 0, + AlphaBlending = 1, + BrightnessIncrease = 2, + BrightnessDecrease = 3, +} + +/// Alpha Blending Coefficients (R/W) (not W) +pub const BLDALPHA: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0052) }; + +newtype! { + AlphaBlendingSetting, u16 +} + +impl AlphaBlendingSetting { + phantom_fields! { + self.0: u16, + eva_coefficient: 0-4, + evb_coefficient: 8-12, + } +} + +/// Brightness (Fade-In/Out) Coefficient (W) (not R/W) +pub const BLDY: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0054) }; + +newtype! { + BrightnessSetting, u32 +} + +impl BrightnessSetting { + phantom_fields! { + self.0: u32, + evy_coefficient: 0-4, + } +} diff --git a/src/io/display.rs b/src/io/display.rs index 421c93b..058143e 100644 --- a/src/io/display.rs +++ b/src/io/display.rs @@ -24,39 +24,33 @@ newtype!( /// * 13: Window 0 display /// * 14: Window 1 display /// * 15: Object window - #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] DisplayControlSetting, u16 ); #[allow(missing_docs)] impl DisplayControlSetting { - bool_bits!( - u16, - [ - (3, cgb_mode), - (4, frame1), - (5, hblank_interval_free), - (6, oam_memory_1d), - (7, force_vblank), - (8, bg0), - (9, bg1), - (10, bg2), - (11, bg3), - (12, obj), - (13, win0), - (14, win1), - (15, obj_window) - ] - ); - - multi_bits!(u16, [(0, 3, mode, DisplayMode, Mode0, Mode1, Mode2, Mode3, Mode4, Mode5)]); + phantom_fields! { + self.0: u16, + mode: 0-2=DisplayMode, + frame1: 4, + hblank_interval_free: 5, + oam_memory_1d: 6, + force_vblank: 7, + bg0: 8, + bg1: 9, + bg2: 10, + bg3: 11, + obj: 12, + win0: 13, + win1: 14, + obj_window: 15, + } } -/// The six display modes available on the GBA. -#[derive(Debug, Clone, Copy, PartialEq, Eq)] -#[repr(u16)] -pub enum DisplayMode { +newtype_enum! { + /// The six display modes available on the GBA. + DisplayMode = u16, /// * Affine: No /// * Layers: 0/1/2/3 /// * Size(px): 256x256 to 512x512 @@ -106,26 +100,21 @@ pub const DISPSTAT: VolAddress = unsafe { VolAddress::new_ newtype!( /// A newtype over display status and interrupt control values. - #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] DisplayStatusSetting, u16 ); -#[allow(missing_docs)] impl DisplayStatusSetting { - bool_bits!( - u16, - [ - (0, vblank_flag), - (1, hblank_flag), - (2, vcounter_flag), - (3, vblank_irq_enable), - (4, hblank_irq_enable), - (5, vcounter_irq_enable), - ] - ); - - multi_bits!(u16, [(8, 8, vcount_setting)]); + phantom_fields! { + self.0: u16, + vblank_flag: 0, + hblank_flag: 1, + vcounter_flag: 2, + vblank_irq_enable: 3, + hblank_irq_enable: 4, + vcounter_irq_enable: 5, + vcount_setting: 8-15, + } } /// Vertical Counter (LY). Read only. @@ -174,17 +163,14 @@ newtype! { /// * Bits 4-7: BG mosaic vertical increase /// * Bits 8-11: Object mosaic horizontal increase /// * Bits 12-15: Object mosaic vertical increase - #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] MosaicSetting, u16 } impl MosaicSetting { - multi_bits!( - u16, - [ - (0, 4, bg_horizontal_inc), - (4, 4, bg_vertical_inc), - (8, 4, obj_horizontal_inc), - (12, 4, obj_vertical_inc), - ] - ); + phantom_fields! { + self.0: u16, + bg_horizontal_inc: 0-3, + bg_vertical_inc: 4-7, + obj_horizontal_inc: 8-11, + obj_vertical_inc: 12-15, + } } diff --git a/src/io/dma.rs b/src/io/dma.rs index 3ecd98e..38f7567 100644 --- a/src/io/dma.rs +++ b/src/io/dma.rs @@ -63,30 +63,20 @@ use super::*; newtype! { /// Allows you to configure a DMA unit. - #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] DMAControlSetting, u16 } #[allow(missing_docs)] impl DMAControlSetting { - bool_bits!(u16, [(9, dma_repeat), (10, use_32bit), (14, irq_when_done), (15, enabled)]); - - multi_bits!( - u16, - [ - ( - 5, - 2, - dest_address_control, - DMADestAddressControl, - Increment, - Decrement, - Fixed, - IncrementReload - ), - (7, 2, source_address_control, DMASrcAddressControl, Increment, Decrement, Fixed), - (12, 2, start_time, DMAStartTiming, Immediate, VBlank, HBlank, Special) - ] - ); + phantom_fields! { + self.0: u16, + dest_address_control: 5-6=DMADestAddressControl, + source_address_control: 7-8=DMASrcAddressControl, + dma_repeat: 9, + use_32bit: 10, + start_time: 12-13=DMAStartTiming, + irq_when_done: 14, + enabled: 15, + } } /// Sets how the destination address should be adjusted per data transfer. @@ -134,6 +124,189 @@ pub enum DMAStartTiming { Special = 3, } +pub struct DMA0; +impl DMA0 { + /// DMA 0 Source Address, read only. + const DMA0SAD: VolAddress<*const u32> = unsafe { VolAddress::new_unchecked(0x400_00B0) }; + /// DMA 0 Destination Address, read only. + const DMA0DAD: VolAddress<*mut u32> = unsafe { VolAddress::new_unchecked(0x400_00B4) }; + /// DMA 0 Word Count, read only. + const DMA0CNT_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_00B8) }; + /// DMA 0 Control, read/write. + const DMA0CNT_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_00BA) }; + + /// Assigns the source register. + /// + /// This register is read only, so it is not exposed directly. + /// + /// # Safety + /// + /// The source pointer must be aligned and valid to read from. + pub unsafe fn set_source(src: *const u32) { + Self::DMA0SAD.write(src) + } + + /// Assigns the destination register. + /// + /// This register is read only, so it is not exposed directly. + /// + /// # Safety + /// + /// The source pointer must be aligned and valid to write to. + pub unsafe fn set_dest(dest: *mut u32) { + Self::DMA0DAD.write(dest) + } + + /// Assigns the count register. + /// + /// This register is read only, so it is not exposed directly. + /// + /// # Safety + /// + /// The count given must specify a valid number of units to write, starting at + /// the assigned destination address. + pub unsafe fn set_count(count: u16) { + Self::DMA0CNT_L.write(count) + } + + /// Reads the current control setting. + pub fn control() -> DMAControlSetting { + Self::DMA0CNT_H.read() + } + + /// Writes the control setting given. + /// + /// # Safety + /// + /// You must ensure that the Source, Destination, and Count values are set + /// correctly **before** you activate the Enable bit. + pub unsafe fn set_control(setting: DMAControlSetting) { + Self::DMA0CNT_H.write(setting) + } +} + +pub struct DMA1; +impl DMA1 { + /// DMA 1 Source Address, read only. + const DMA1SAD: VolAddress<*const u32> = unsafe { VolAddress::new_unchecked(0x400_00BC) }; + /// DMA 1 Destination Address, read only. + const DMA1DAD: VolAddress<*mut u32> = unsafe { VolAddress::new_unchecked(0x400_00C0) }; + /// DMA 1 Word Count, read only. + const DMA1CNT_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_00C4) }; + /// DMA 1 Control, read/write. + const DMA1CNT_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_00C6) }; + + /// Assigns the source register. + /// + /// This register is read only, so it is not exposed directly. + /// + /// # Safety + /// + /// The source pointer must be aligned and valid to read from. + pub unsafe fn set_source(src: *const u32) { + Self::DMA1SAD.write(src) + } + + /// Assigns the destination register. + /// + /// This register is read only, so it is not exposed directly. + /// + /// # Safety + /// + /// The source pointer must be aligned and valid to write to. + pub unsafe fn set_dest(dest: *mut u32) { + Self::DMA1DAD.write(dest) + } + + /// Assigns the count register. + /// + /// This register is read only, so it is not exposed directly. + /// + /// # Safety + /// + /// The count given must specify a valid number of units to write, starting at + /// the assigned destination address. + pub unsafe fn set_count(count: u16) { + Self::DMA1CNT_L.write(count) + } + + /// Reads the current control setting. + pub fn control() -> DMAControlSetting { + Self::DMA1CNT_H.read() + } + + /// Writes the control setting given. + /// + /// # Safety + /// + /// You must ensure that the Source, Destination, and Count values are set + /// correctly **before** you activate the Enable bit. + pub unsafe fn set_control(setting: DMAControlSetting) { + Self::DMA1CNT_H.write(setting) + } +} + +pub struct DMA2; +impl DMA2 { + /// DMA 2 Source Address, read only. + const DMA2SAD: VolAddress<*const u32> = unsafe { VolAddress::new_unchecked(0x400_00C8) }; + /// DMA 2 Destination Address, read only. + const DMA2DAD: VolAddress<*mut u32> = unsafe { VolAddress::new_unchecked(0x400_00CC) }; + /// DMA 2 Word Count, read only. + const DMA2CNT_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_00D0) }; + /// DMA 2 Control, read/write. + const DMA2CNT_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_00D2) }; + + /// Assigns the source register. + /// + /// This register is read only, so it is not exposed directly. + /// + /// # Safety + /// + /// The source pointer must be aligned and valid to read from. + pub unsafe fn set_source(src: *const u32) { + Self::DMA2SAD.write(src) + } + + /// Assigns the destination register. + /// + /// This register is read only, so it is not exposed directly. + /// + /// # Safety + /// + /// The source pointer must be aligned and valid to write to. + pub unsafe fn set_dest(dest: *mut u32) { + Self::DMA2DAD.write(dest) + } + + /// Assigns the count register. + /// + /// This register is read only, so it is not exposed directly. + /// + /// # Safety + /// + /// The count given must specify a valid number of units to write, starting at + /// the assigned destination address. + pub unsafe fn set_count(count: u16) { + Self::DMA2CNT_L.write(count) + } + + /// Reads the current control setting. + pub fn control() -> DMAControlSetting { + Self::DMA2CNT_H.read() + } + + /// Writes the control setting given. + /// + /// # Safety + /// + /// You must ensure that the Source, Destination, and Count values are set + /// correctly **before** you activate the Enable bit. + pub unsafe fn set_control(setting: DMAControlSetting) { + Self::DMA2CNT_H.write(setting) + } +} + /// This is the "general purpose" DMA unit, with the fewest limits. pub struct DMA3; impl DMA3 { diff --git a/src/io/keypad.rs b/src/io/keypad.rs index 80e5d55..487c04d 100644 --- a/src/io/keypad.rs +++ b/src/io/keypad.rs @@ -27,27 +27,23 @@ newtype! { /// /// Methods here follow the "high-active" convention, where a bit is enabled /// when it's part of the set. - #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] KeyInput, u16 } -#[allow(missing_docs)] impl KeyInput { - bool_bits!( - u16, - [ - (0, a), - (1, b), - (2, select), - (3, start), - (4, right), - (5, left), - (6, up), - (7, down), - (8, r), - (9, l) - ] - ); + phantom_fields! { + self.0: u16, + a: 0, + b: 1, + select: 2, + start: 3, + right: 4, + left: 5, + up: 6, + down: 7, + r: 8, + l: 9, + } /// Takes the set difference between these keys and another set of keys. pub fn difference(self, other: Self) -> Self { @@ -87,6 +83,11 @@ pub fn read_key_input() -> KeyInput { KeyInput(KEYINPUT.read() ^ 0b0000_0011_1111_1111) } +/// Use this to configure when a keypad interrupt happens. +/// +/// See the `KeyInterruptSetting` type for more. +pub const KEYCNT: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0132) }; + newtype! { /// Allows configuration of when a keypad interrupt fires. /// @@ -102,31 +103,23 @@ newtype! { /// NOTE: This _only_ configures the operation of when keypad interrupts can /// fire. You must still set the `IME` to have interrupts at all, and you must /// further set `IE` for keypad interrupts to be possible. - #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] KeyInterruptSetting, u16 } #[allow(missing_docs)] impl KeyInterruptSetting { - bool_bits!( - u16, - [ - (0, a), - (1, b), - (2, select), - (3, start), - (4, right), - (5, left), - (6, up), - (7, down), - (8, r), - (9, l), - (14, irq_enabled), - (15, irq_logical_and) - ] - ); + phantom_fields! { + self.0: u16, + a: 0, + b: 1, + select: 2, + start: 3, + right: 4, + left: 5, + up: 6, + down: 7, + r: 8, + l: 9, + irq_enabled: 14, + irq_logical_and: 15, + } } - -/// Use this to configure when a keypad interrupt happens. -/// -/// See the `KeyInterruptSetting` type for more. -pub const KEYCNT: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0132) }; diff --git a/src/io/sound.rs b/src/io/sound.rs new file mode 100644 index 0000000..46afcbc --- /dev/null +++ b/src/io/sound.rs @@ -0,0 +1,239 @@ +///! Module for sound registers. +use super::*; + +//TODO within these "read/write" registers only some bits are actually read/write! + +/// Sound Channel 1 Sweep Register (`NR10`). Read/Write. +pub const SOUND1CNT_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0060) }; + +newtype! { + SweepRegisterSetting, u16 +} + +impl SweepRegisterSetting { + phantom_fields! { + self.0: u16, + sweep_shift: 0-2, + sweep_decreasing: 3, + sweep_time: 4-6, + } +} + +/// Sound Channel 1 Duty/Length/Envelope (`NR11`, `NR12`). Read/Write. +pub const SOUND1CNT_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0062) }; + +newtype! { + DutyLenEnvelopeSetting, u16 +} + +impl DutyLenEnvelopeSetting { + phantom_fields! { + self.0: u16, + sound_length: 0-5, + wave_pattern_duty: 6-7, //TODO: enum this + envelope_step_time: 8-10, + envelope_increasing: 11, + initial_envelope_volume: 12-15, + } +} + +/// Sound Channel 1 Frequency/Control (`NR13`, `NR14`). Read/Write. +pub const SOUND1CNT_X: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0064) }; + +newtype! { + FrequencyControlSetting, u32 // TODO: u16 or u32? +} + +impl FrequencyControlSetting { + phantom_fields! { + self.0: u32, + frequency: 0-10, + length_flag: 14, + is_initial: 15, + } +} + +/// Sound Channel 2 Channel 2 Duty/Length/Envelope (`NR21`, `NR22`). Read/Write. +pub const SOUND2CNT_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0068) }; + +/// Sound Channel 2 Frequency/Control (`NR23`, `NR24`). Read/Write. +pub const SOUND2CNT_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_006C) }; + +/// Sound Channel 3 Stop/Wave RAM select (`NR23`, `NR24`). Read/Write. +pub const SOUND3CNT_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0070) }; + +newtype! { + StopWaveRAMSelectSetting, u16 +} + +impl StopWaveRAMSelectSetting { + phantom_fields! { + self.0: u16, + wave_ram_dimension_2d: 5, + wave_ram_bank_number: 6, + sound_channel_3_playing: 7, + } +} + +/// Sound Channel 3 Length/Volume (`NR23`, `NR24`). Read/Write. +pub const SOUND3CNT_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0072) }; + +newtype! { + LengthVolumeSetting, u16 +} + +impl LengthVolumeSetting { + phantom_fields! { + self.0: u16, + sound_length: 0-7, + sound_volume: 13-14, + force_75percent: 15, + } +} + +/// Sound Channel 3 Frequency/Control (`NR33`, `NR34`). Read/Write. +pub const SOUND3CNT_X: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0074) }; + +/// Channel 3 Wave Pattern RAM (W/R) +pub const WAVE_RAM0_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0090) }; +/// Channel 3 Wave Pattern RAM (W/R) +pub const WAVE_RAM0_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0092) }; +/// Channel 3 Wave Pattern RAM (W/R) +pub const WAVE_RAM1_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0094) }; +/// Channel 3 Wave Pattern RAM (W/R) +pub const WAVE_RAM1_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0096) }; +/// Channel 3 Wave Pattern RAM (W/R) +pub const WAVE_RAM2_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0098) }; +/// Channel 3 Wave Pattern RAM (W/R) +pub const WAVE_RAM2_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_009A) }; +/// Channel 3 Wave Pattern RAM (W/R) +pub const WAVE_RAM3_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_009C) }; +/// Channel 3 Wave Pattern RAM (W/R) +pub const WAVE_RAM3_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_009E) }; + +/// Sound Channel 4 Length/Envelope (`NR41`, `NR42`). Read/Write. +pub const SOUND4CNT_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0078) }; + +newtype! { + LengthEnvelopeSetting, u32 // TODO: is this u32? +} + +impl LengthEnvelopeSetting { + phantom_fields! { + self.0: u32, + sound_length: 0-5, + envelope_step_time: 8-10, + envelope_increasing: 11, + initial_envelope_volume: 12-15, + } +} + +/// Sound Channel 4 Frequency/Control (`NR43`, `NR44`). Read/Write. +pub const SOUND4CNT_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_007C) }; + +newtype! { + NoiseFrequencySetting, u32 // TODO: is this u32? +} + +impl NoiseFrequencySetting { + phantom_fields! { + self.0: u32, + frequency_divide_ratio: 0-2, + counter_step_width_7bit: 3, + shift_clock_frequency: 4-7, + length_flag_stop: 14, + initial_restart: 15, + } +} + +// TODO: unify FIFO as + +/// Sound A FIFO, Data 0 and Data 1 (W) +pub const FIFO_A_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_00A0) }; +/// Sound A FIFO, Data 2 and Data 3 (W) +pub const FIFO_A_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_00A2) }; +/// Sound B FIFO, Data 0 and Data 1 (W) +pub const FIFO_B_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_00A4) }; +/// Sound B FIFO, Data 2 and Data 3 (W) +pub const FIFO_B_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_00A6) }; + +/// Channel L/R Volume/Enable (`NR50`, `NR51`). Read/Write. +pub const SOUNDCNT_L: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0080) }; + +newtype! { + NonWaveVolumeEnableSetting, u16 +} + +impl NonWaveVolumeEnableSetting { + phantom_fields! { + self.0: u16, + right_master_volume: 0-2, + left_master_volume: 4-6, + right_enable_flags: 8-11, // TODO: this is junk + left_enable_flags: 12-15, // TODO: junk + } +} + +/// DMA Sound Control/Mixing. Read/Write. +pub const SOUNDCNT_H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0082) }; + +newtype! { + WaveVolumeEnableSetting, u16 +} + +impl WaveVolumeEnableSetting { + phantom_fields! { + self.0: u16, + sound_number_volume: 0-1=NumberSoundVolume, + dma_sound_a_full_volume: 2, + dma_sound_b_full_volume: 3, + dma_sound_a_enable_right: 8, + dma_sound_a_enable_left: 9, + dma_sound_a_timer_select: 10, + dma_sound_a_reset_fifo: 11, + dma_sound_b_enable_right: 12, + dma_sound_b_enable_left: 13, + dma_sound_b_timer_select: 14, + dma_sound_b_reset_fifo: 15, + } +} + +newtype_enum! { + NumberSoundVolume = u16, + Quarter = 0, + Half = 1, + Full = 2, +} + +/// Sound on/off (`NR52`). Read/Write. +pub const SOUNDCNT_X: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0084) }; + +newtype! { + SoundMasterSetting, u16 +} + +impl SoundMasterSetting { + phantom_fields! { + self.0: u16, + sound1_on: 0, + sound2_on: 1, + sound3_on: 2, + sound4_on: 3, + psg_fifo_master_enabled: 7, + } +} + +/// Sound on/off (`NR52`). Read/Write. +pub const SOUNDBIAS: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0088) }; + +newtype! { + SoundPWMSetting, u16 +} + +impl SoundMasterSetting { + phantom_fields! { + self.0: u16, + bias_level: 1-9, + amplitude_resolution: 14-15, // TODO: enum this + } +} diff --git a/src/io/timers.rs b/src/io/timers.rs index 026409e..25cc516 100644 --- a/src/io/timers.rs +++ b/src/io/timers.rs @@ -61,13 +61,15 @@ newtype! { /// mode naturally does nothing when used with Timer 0. /// * Bit 6: Raise a timer interrupt upon overflow. /// * Bit 7: Enable the timer. - #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] TimerControlSetting, u16 } impl TimerControlSetting { - bool_bits!(u16, [(6, overflow_irq), (7, enabled)]); - - multi_bits!(u16, [(0, 3, tick_rate, TimerTickRate, CPU1, CPU64, CPU256, CPU1024, Cascade),]); + phantom_fields! { + self.0: u16, + tick_rate: 0-2=TimerTickRate, + overflow_irq: 6, + enabled: 7, + } } /// Controls how often an enabled timer ticks upward. diff --git a/src/io/window.rs b/src/io/window.rs new file mode 100644 index 0000000..0e09794 --- /dev/null +++ b/src/io/window.rs @@ -0,0 +1,89 @@ +//! Module that holds stuff for the Window ability. + +use super::*; + +/// Window 0 Horizontal Dimensions (W) +pub const WIN0H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0040) }; + +/// Window 1 Horizontal Dimensions (W) +pub const WIN1H: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0042) }; + +newtype! { + HorizontalWindowSetting, u16 +} + +impl HorizontalWindowSetting { + phantom_fields! { + self.0: u16, + col_end: 0-7, + col_start: 8-15, + } +} + +/// Window 0 Vertical Dimensions (W) +pub const WIN0V: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0044) }; + +/// Window 1 Vertical Dimensions (W) +pub const WIN1V: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0046) }; + +newtype! { + VerticalWindowSetting, u16 +} + +impl VerticalWindowSetting { + phantom_fields! { + self.0: u16, + row_end: 0-7, + row_start: 8-15, + } +} + +/// Control of Inside of Window(s) (R/W) +pub const WININ: VolAddress = unsafe { VolAddress::new_unchecked(0x400_0048) }; + +newtype! { + InsideWindowSetting, u16 +} + +impl InsideWindowSetting { + phantom_fields! { + self.0: u16, + win0_bg0: 0, + win0_bg1: 1, + win0_bg2: 2, + win0_bg3: 3, + win0_obj: 4, + win0_color_special: 5, + win1_bg0: 8, + win1_bg1: 9, + win1_bg2: 10, + win1_bg3: 11, + win1_obj: 12, + win1_color_special: 13, + } +} + +/// Control of Outside of Windows & Inside of OBJ Window (R/W) +pub const WINOUT: VolAddress = unsafe { VolAddress::new_unchecked(0x400_004A) }; + +newtype! { + OutsideWindowSetting, u16 +} + +impl OutsideWindowSetting { + phantom_fields! { + self.0: u16, + outside_bg0: 0, + outside_bg1: 1, + outside_bg2: 2, + outside_bg3: 3, + outside_obj: 4, + outside_color_special: 5, + obj_win_bg0: 8, + obj_win_bg1: 9, + obj_win_bg2: 10, + obj_win_bg3: 11, + obj_win_obj: 12, + obj_win_color_special: 13, + } +} diff --git a/src/iwram.rs b/src/iwram.rs new file mode 100644 index 0000000..20bf81d --- /dev/null +++ b/src/iwram.rs @@ -0,0 +1 @@ +//! Module for Internal Work RAM (`IWRAM`). diff --git a/src/lib.rs b/src/lib.rs index c72a2cf..5de5ac9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,10 +2,9 @@ #![feature(asm)] #![feature(const_int_wrapping)] #![feature(const_int_rotate)] -#![feature(min_const_unsafe_fn)] -#![warn(missing_docs)] #![allow(clippy::cast_lossless)] #![deny(clippy::float_arithmetic)] +//#![warn(missing_docs)] //! This crate helps you write GBA ROMs. //! @@ -20,7 +19,7 @@ //! **Do not** use this crate in programs that aren't running on the GBA. If you //! do, it's a giant bag of Undefined Behavior. -pub(crate) use gba_proc_macro::{bool_bits, multi_bits}; +pub(crate) use gba_proc_macro::phantom_fields; /// Assists in defining a newtype wrapper over some base type. /// @@ -28,22 +27,29 @@ pub(crate) use gba_proc_macro::{bool_bits, multi_bits}; /// of your docs and derives in front of your newtype in the same way you would /// for a normal struct. Then the inner type to be wrapped it name. /// -/// The macro _assumes_ that you'll be using it to wrap zero safe numeric types, -/// so it automatically provides a `const fn` method for `new` that just wraps -/// `0`. If this is not desired you can add `, no frills` to the invocation. +/// The macro _assumes_ that you'll be using it to wrap numeric types and that +/// it's safe to have a `0` value, so it automatically provides a `const fn` +/// method for `new` that just wraps `0`. Also, it derives Debug, Clone, Copy, +/// Default, PartialEq, and Eq. If all this is not desired you can add `, no +/// frills` to the invocation. /// /// Example: /// ``` /// newtype! { /// /// Records a particular key press combination. -/// #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] /// KeyInput, u16 /// } +/// newtype! { +/// /// You can't derive most stuff above array size 32, so we add +/// /// the `, no frills` modifier to this one. +/// BigArray, [u8; 200], no frills +/// } /// ``` #[macro_export] macro_rules! newtype { ($(#[$attr:meta])* $new_name:ident, $v:vis $old_name:ty) => { $(#[$attr])* + #[derive(Debug, Clone, Copy, Default, PartialEq, Eq)] #[repr(transparent)] pub struct $new_name($v $old_name); impl $new_name { @@ -60,18 +66,71 @@ macro_rules! newtype { }; } +/// Assists in defining a newtype that's an enum. +/// +/// First give `NewType = OldType,`, then define the tags and their explicit +/// values with zero or more entries of `TagName = base_value,`. In both cases +/// you can place doc comments or other attributes directly on to the type +/// declaration or the tag declaration. +/// +/// The generated enum will get an appropriate `repr` attribute as well as Debug, Clone, Copy, +/// +/// Example: +/// ``` +/// newtype_enum! { +/// /// The Foo +/// Foo = u16, +/// /// The Bar +/// Bar = 0, +/// /// The Zap +/// Zap = 1, +/// } +/// ``` +#[macro_export] +macro_rules! newtype_enum { + ( + $(#[$struct_attr:meta])* + $new_name:ident = $old_name:ident, + $($(#[$tag_attr:meta])* $tag_name:ident = $base_value:expr,)* + ) => { + $(#[$struct_attr])* + #[derive(Debug, Clone, Copy, PartialEq, Eq)] + #[repr($old_name)] + pub enum $new_name { + $( + $(#[$tag_attr])* + $tag_name = $base_value, + )* + } + }; +} + pub mod base; pub(crate) use self::base::*; + pub mod bios; + +pub mod iwram; + +pub mod ewram; + pub mod io; -pub mod mgba; -pub mod oam; + pub mod palram; + pub mod vram; +pub mod oam; + +pub mod rom; + +pub mod sram; + +pub mod mgba; + newtype! { /// A color on the GBA is an RGB 5.5.5 within a `u16` - #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] + #[derive(PartialOrd, Ord, Hash)] Color, u16 } diff --git a/src/oam.rs b/src/oam.rs index f9c0cef..fe7f239 100644 --- a/src/oam.rs +++ b/src/oam.rs @@ -11,21 +11,18 @@ newtype! { /// * Bit 12: Mosaic /// * Bit 13: is 8bpp /// * Bits 14-15: Object Shape: Square, Horizontal, Vertical - #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] OBJAttr0, u16 } impl OBJAttr0 { - bool_bits!(u16, [(12, mosaic), (13, is_8bpp),]); - - multi_bits!( - u16, - [ - (0, 8, row_coordinate), - (8, 2, obj_rendering, ObjectRender, Normal, Affine, Disabled, DoubleAreaAffine), - (10, 2, obj_mode, ObjectMode, Normal, SemiTransparent, OBJWindow), - (14, 2, obj_shape, ObjectShape, Square, Horizontal, Vertical), - ] - ); + phantom_fields! { + self.0: u16, + row_coordinate: 0-7, + obj_rendering: 8-9=ObjectRender, + obj_mode: 10-11=ObjectMode, + mosaic: 12, + is_8bpp: 13, + obj_shape: 14-15=ObjectShape, + } } /// What style of rendering for this object @@ -77,20 +74,17 @@ newtype! { /// * Normal render: Bit 12 holds hflip and 13 holds vflip. /// * Affine render: The affine parameter selection. /// * Bits 14-15: Object Size - #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] OBJAttr1, u16 } impl OBJAttr1 { - bool_bits!(u16, [(12, hflip), (13, vflip),]); - - multi_bits!( - u16, - [ - (0, 9, col_coordinate), - (9, 5, affine_index), - (14, 2, obj_size, ObjectSize, Zero, One, Two, Three), - ] - ); + phantom_fields! { + self.0: u16, + col_coordinate: 0-8, + affine_index: 9-13, + hflip: 12, + vflip: 13, + obj_size: 14-15=ObjectSize, + } } /// The object's size. @@ -123,9 +117,77 @@ newtype! { /// * Bits 0-9: Base Tile Index (tile offset from CBB4) /// * Bits 10-11: Priority /// * Bits 12-15: Palbank (if using 4bpp) - #[derive(Debug, Copy, Clone, Default, PartialEq, Eq)] OBJAttr2, u16 } impl OBJAttr2 { - multi_bits!(u16, [(0, 10, tile_id), (10, 2, priority), (12, 4, palbank),]); + phantom_fields! { + self.0: u16, + tile_id: 0-9, + priority: 10-11, + palbank: 12-15, + } +} + +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +pub struct ObjectAttributes { + attr0: OBJAttr0, + attr1: OBJAttr1, + attr2: OBJAttr2, +} + +/// The object attributes, but there are gaps in the array, so we must not +/// expose this directly. +const OBJ_ATTR_APPROX: VolAddressBlock<[u16; 4]> = unsafe { VolAddressBlock::new_unchecked(VolAddress::new_unchecked(0x700_0000), 128) }; + +pub fn write_obj_attributes(slot: usize, attributes: ObjectAttributes) -> Option<()> { + OBJ_ATTR_APPROX.get(slot).map(|va| unsafe { + let va_u16 = va.cast::(); + va_u16.cast::().write(attributes.attr0); + va_u16.offset(1).cast::().write(attributes.attr1); + va_u16.offset(2).cast::().write(attributes.attr2); + }) +} + +pub fn read_obj_attributes(slot: usize) -> Option { + OBJ_ATTR_APPROX.get(slot).map(|va| unsafe { + let va_u16 = va.cast::(); + let attr0 = va_u16.cast::().read(); + let attr1 = va_u16.offset(1).cast::().read(); + let attr2 = va_u16.offset(2).cast::().read(); + ObjectAttributes { attr0, attr1, attr2 } + }) +} + +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +pub struct AffineParameters { + pa: i16, + pb: i16, + pc: i16, + pd: i16, +} +// TODO: find the correct fixed-point type here. + +/// The object attributes, but there are gaps in the array, so we must not +/// expose this directly. +const AFFINE_PARAMS_APPROX: VolAddressBlock<[i16; 16]> = unsafe { VolAddressBlock::new_unchecked(VolAddress::new_unchecked(0x700_0000), 32) }; + +pub fn write_affine_parameters(slot: usize, params: AffineParameters) -> Option<()> { + AFFINE_PARAMS_APPROX.get(slot).map(|va| unsafe { + let va_i16 = va.cast::(); + va_i16.offset(3).write(params.pa); + va_i16.offset(7).write(params.pb); + va_i16.offset(11).write(params.pc); + va_i16.offset(15).write(params.pd); + }) +} + +pub fn read_affine_parameters(slot: usize) -> Option { + AFFINE_PARAMS_APPROX.get(slot).map(|va| unsafe { + let va_i16 = va.cast::(); + let pa = va_i16.offset(3).read(); + let pb = va_i16.offset(7).read(); + let pc = va_i16.offset(11).read(); + let pd = va_i16.offset(15).read(); + AffineParameters { pa, pb, pc, pd } + }) } diff --git a/src/palram.rs b/src/palram.rs index e5b251a..5158804 100644 --- a/src/palram.rs +++ b/src/palram.rs @@ -37,15 +37,13 @@ pub const PALRAM_BG: VolAddressBlock = unsafe { VolAddressBlock::new_unch pub const PALRAM_OBJ: VolAddressBlock = unsafe { VolAddressBlock::new_unchecked(VolAddress::new_unchecked(0x500_0200), 256) }; /// Obtains the address of the specified 8bpp background palette slot. -pub fn index_palram_bg_8bpp(slot: u8) -> VolAddress { - // TODO: const this +pub const fn index_palram_bg_8bpp(slot: u8) -> VolAddress { // Note(Lokathor): because of the `u8` limit we can't go out of bounds here. unsafe { PALRAM_BG.index_unchecked(slot as usize) } } /// Obtains the address of the specified 8bpp object palette slot. -pub fn index_palram_obj_8bpp(slot: u8) -> VolAddress { - // TODO: const this +pub const fn index_palram_obj_8bpp(slot: u8) -> VolAddress { // Note(Lokathor): because of the `u8` limit we can't go out of bounds here. unsafe { PALRAM_OBJ.index_unchecked(slot as usize) } } @@ -54,8 +52,7 @@ pub fn index_palram_obj_8bpp(slot: u8) -> VolAddress { /// /// Accesses `palbank * 16 + palslot`, if this is out of bounds the computation /// will wrap. -pub fn index_palram_bg_4bpp(palbank: u8, palslot: u8) -> VolAddress { - // TODO: const this +pub const fn index_palram_bg_4bpp(palbank: u8, palslot: u8) -> VolAddress { // Note(Lokathor): because of the `u8` limit we can't go out of bounds here. unsafe { PALRAM_BG.index_unchecked(palbank.wrapping_mul(16).wrapping_add(palslot) as usize) } } @@ -64,8 +61,7 @@ pub fn index_palram_bg_4bpp(palbank: u8, palslot: u8) -> VolAddress { /// /// Accesses `palbank * 16 + palslot`, if this is out of bounds the computation /// will wrap. -pub fn index_palram_obj_4bpp(palbank: u8, palslot: u8) -> VolAddress { - // TODO: const this +pub const fn index_palram_obj_4bpp(palbank: u8, palslot: u8) -> VolAddress { // Note(Lokathor): because of the `u8` limit we can't go out of bounds here. unsafe { PALRAM_OBJ.index_unchecked(palbank.wrapping_mul(16).wrapping_add(palslot) as usize) } } diff --git a/src/rom.rs b/src/rom.rs new file mode 100644 index 0000000..2414747 --- /dev/null +++ b/src/rom.rs @@ -0,0 +1 @@ +//! Module for things related to ROM. diff --git a/src/sram.rs b/src/sram.rs new file mode 100644 index 0000000..a294d5f --- /dev/null +++ b/src/sram.rs @@ -0,0 +1 @@ +//! Module for things related to SRAM. diff --git a/src/vram/affine.rs b/src/vram/affine.rs index 57293a0..6b1f556 100644 --- a/src/vram/affine.rs +++ b/src/vram/affine.rs @@ -4,7 +4,6 @@ use super::*; newtype! { /// A screenblock entry for use in Affine mode. - #[derive(Debug, Clone, Copy, Default)] AffineScreenblockEntry, u8 } diff --git a/src/vram/text.rs b/src/vram/text.rs index bb433f5..07db59b 100644 --- a/src/vram/text.rs +++ b/src/vram/text.rs @@ -4,18 +4,21 @@ use super::*; newtype! { /// A screenblock entry for use in Text mode. - #[derive(Debug, Clone, Copy, Default)] TextScreenblockEntry, u16 } impl TextScreenblockEntry { /// Generates a default entry with the specified tile index. - pub const fn from_tile_index(index: u16) -> Self { - Self::new().with_tile_index(index) + pub const fn from_tile_id(id: u16) -> Self { + Self::new().with_tile_id(id) } - bool_bits!(u16, [(10, hflip), (11, vflip)]); - - multi_bits!(u16, [(0, 10, tile_index), (12, 4, palbank)]); + phantom_fields! { + self.0: u16, + tile_id: 0-9, + hflip: 10, + vflip: 11, + palbank: 12-15, + } } newtype! { diff --git a/thumbv4-none-agb.json b/thumbv4-none-agb.json index 11f40bf..5aece43 100644 --- a/thumbv4-none-agb.json +++ b/thumbv4-none-agb.json @@ -12,7 +12,7 @@ "cpu": "arm7tdmi", "data-layout": "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64", "emit-debug-gdb-scripts": false, - "env": "", + "env": "agb", "executables": true, "features": "+soft-float,+strict-align", "linker": "arm-none-eabi-ld",