This configuration means that instead of using crates.io, Cargo will query
-the my-awesome-registry source instead (configured to a different index
-here). This alternate source must be the exact same as the crates.io index.
-Cargo assumes that replacement sources are exact 1:1 mirrors in this respect,
-and the following support is designed around that assumption.
-
When generating a lock file for crate using a replacement registry, the
-original registry will be encoded into the lock file. For example in the
-configuration above, all lock files will still mention crates.io as the
-registry that packages originated from. This semantically represents how
-crates.io is the source of truth for all crates, and this is upheld because
-all replacements have a 1:1 correspondance.
-
Overall, this means that no matter what replacement source you're working
-with, you can ship your lock file to anyone else and you'll all still have
-verifiably reproducible builds!
-
This has enabled tools like
-cargo-vendor and
-cargo-local-registry,
-which are often useful for "offline builds." They prepare the list of all
-Rust dependencies ahead of time, which lets you ship them to a build machine
-with ease.
cargo check is a new subcommand that should speed up the development
-workflow in many cases.
-
What does it do? Let's take a step back and talk about how rustc compiles
-your code. Compilation has many "passes", that is, there are many distinct
-steps that the compiler takes on the road from your source code to producing
-the final binary. However, you can think of this process in two big steps:
-first, rustc does all of its safety checks, makes sure your syntax is
-correct, all that stuff. Second, once it's satisfied that everything is in
-order, it produces the actual binary code that you end up executing.
-
It turns out that that second step takes a lot of time. And most of the time,
-it's not necessary. That is, when you're working on some Rust code, many
-developers will get into a workflow like this:
-
-
Write some code.
-
Run cargo build to make sure it compiles.
-
Repeat 1-2 as needed.
-
Run cargo test to make sure your tests pass.
-
Try the binary yourself
-
GOTO 1.
-
-
In step two, you never actually run your code. You're looking for feedback
-from the compiler, not to actually run the binary. cargo check supports
-exactly this use-case: it runs all of the compiler's checks, but doesn't
-produce the final binary. To use it:
-
$ cargo check
-
-
where you may normally cargo build. The workflow now looks like:
-
-
Write some code.
-
Run cargo check to make sure it compiles.
-
Repeat 1-2 as needed.
-
Run cargo test to make sure your tests pass.
-
Run cargo build to build a binary and try it yourself
-
GOTO 1.
-
-
So how much speedup do you actually get? Like most performance related
-questions, the answer is "it depends." Here are some very un-scientific
-benchmarks at the time of writing.
Cargo has grown a new install command. This is intended to be used for installing
-new subcommands for Cargo, or tools for Rust developers. This doesn't replace the need
-to build real, native packages for end-users on the platforms you support.
-
For example, this guide is created with mdbook. You
-can install it on your system with
cargo new will now default to generating a binary, rather than a library.
-We try to keep Cargo’s CLI quite stable, but this change is important, and is
-unlikely to cause breakage.
-
For some background, cargo new accepts two flags: --lib, for creating
-libraries, and --bin, for creating binaries, or executables. If you don’t
-pass one of these flags, it used to default to --lib. At the time, we made
-this decision because each binary (often) depends on many libraries, and so
-we thought the library case would be more common. However, this is incorrect;
-each library is depended upon by many binaries. Furthermore, when getting
-started, what you often want is a program you can run and play around with.
-It’s not just new Rustaceans though; even very long-time community members
-have said that they find this default surprising. As such, we’ve changed it,
-and it now defaults to --bin.
cargo rustc is a new subcommand for Cargo that allows you to pass arbitrary
-rustc flags through Cargo.
-
For example, Cargo does not have a way to pass unstable flags built-in. But
-if we'd like to use print-type-sizes to see what layout information our
-types have, we can run this:
-
$ cargo rustc -- -Z print-type-sizes
-
-
And we'll get a bunch of output describing the size of our types.
cargo rustc only passes these flags to invocations of your crate, and not to any rustc
-invocations used to build dependencies. If you'd like to do that, see $RUSTFLAGS.
This can be useful for larger projects. For example, the futures package
-is a workspace that contains many related packages:
-
-
futures
-
futures-util
-
futures-io
-
futures-channel
-
-
and more.
-
Workspaces allow these packages to be developed individually, but they share
-a single set of dependencies, and therefore have a single target directory
-and a single Cargo.lock.
Crates.io will not allow you to upload a package with a wildcard dependency.
-In other words, these:
-
[dependencies]
-regex = "*"
-
-
A wildcard dependency means that you work with any possible version of your
-dependency. This is highly unlikely to be true, and would cause unnecessary
-breakage in the ecosystem.
-
Instead, depend on a version range. For example, ^ is the default, so
-you could use
-
[dependencies]
-regex = "1.0.0"
-
-
instead. >, <=, and all of the other, non-* ranges work as well.
Cargo has an examples feature for showing people how to use your package.
-By putting individual files inside of the top-level examples directory, you
-can create multiple examples.
-
But what if your example is too big for a single file? Cargo supports adding
-sub-directories inside of examples, and looks for a main.rs inside of
-them to build the example. It looks like this:
-
my-package
- └──src
- └── lib.rs // code here
- └──examples
- └── simple-example.rs // a single-file example
- └── complex-example
- └── helper.rs
- └── main.rs // a more complex example that also uses `helper` as a submodule
-
The [patch] section of your Cargo.toml can be used when you want to
-override certain parts of your dependency graph.
-
-
Cargo has a [replace] feature that is similar; while we don't intend to deprecate
-or remove [replace], you should prefer [patch] in all circumstances.
-
-
So what’s it look like? Let’s say we have a Cargo.toml that looks like this:
-
[dependencies]
-foo = "1.2.3"
-
-
In addition, our foo package depends on a bar crate, and we find a bug in bar.
-To test this out, we’d download the source code for bar, and then update our
-Cargo.toml:
Now, when you cargo build, it will use the local version of bar, rather
-than the one from crates.io that foo depends on. You can then try out your
-changes, and fix that bug!
The initial release of Rust 2018 won't ship with async/await support, but
-we have reserved the keywords so that a future release will contain them.
-We'll update this page when it's closer to shipping!
-#![allow(unused)]
-fn main() {
-// old code
-let x;
-
-loop {
- x = 7;
- break;
-}
-
-// new code
-let x = loop { break 7; };
-}
-
-
Rust has traditionally positioned itself as an “expression oriented
-language”, that is, most things are expressions that evaluate to a value,
-rather than statements. loop stuck out as strange in this way, as it was
-previously a statement.
-
For now, this only applies to loop, and not things like while or for.
-See the rationale for this decision in RFC issue #1767.
The CPU in modern computer hardware performs reads and writes to memory
-most efficiently when the data is naturally aligned, which generally means
-that the data address is a multiple of the data size. Data alignment refers
-to aligning elements according to their natural alignment. To ensure natural
-alignment, it may be necessary to insert some padding between structure
-elements or after the last element of a structure.
-
-
The #[repr] attribute has a new parameter, align, that sets the alignment of your struct:
If you’re working with low-level stuff, control of these kinds of things can
-be very important!
-
The alignment of a type is normally not worried about as the compiler will
-"do the right thing" of picking an appropriate alignment for general use
-cases. There are situations, however, where a nonstandard alignment may be
-desired when operating with foreign systems. For example these sorts of
-situations tend to necessitate or be much easier with a custom alignment:
-
-
Hardware can often have obscure requirements such as "this structure is
-aligned to 32 bytes" when it in fact is only composed of 4-byte values. While
-this can typically be manually calculated and managed, it's often also useful
-to express this as a property of a type to get the compiler to do a little
-extra work instead.
-
C compilers like gcc and clang offer the ability to specify a custom
-alignment for structures, and Rust can much more easily interoperate with
-these types if Rust can also mirror the request for a custom alignment (e.g.
-passing a structure to C correctly is much easier).
-
Custom alignment can often be used for various tricks here and there and is
-often convenient as "let's play around with an implementation" tool. For
-example this can be used to statically allocate page tables in a kernel or
-create an at-least cache-line-sized structure easily for concurrent
-programming.
-
-
The purpose of this feature is to provide a lightweight annotation to alter
-the compiler-inferred alignment of a structure to enable these situations
-much more easily.
Since well before Rust 1.0, you’ve been able to create exclusive ranges with
-.. like this:
-
-#![allow(unused)]
-fn main() {
-for i in 1..3 {
- println!("i: {}", i);
-}
-}
-
-
This will print i: 1 and then i: 2. Today, you can now create an
-inclusive range, like this:
-
-#![allow(unused)]
-fn main() {
-for i in 1..=3 {
- println!("i: {}", i);
-}
-}
-
-
This will print i: 1 and then i: 2 like before, but also i: 3; the
-three is included in the range. Inclusive ranges are especially useful if you
-want to iterate over every possible value in a range. For example, this is a
-surprising Rust program:
-
fn takes_u8(x: u8) {
- // ...
-}
-
-fn main() {
- for i in 0..256 {
- println!("i: {}", i);
- takes_u8(i);
- }
-}
-
-
What does this program do? The answer: it fails to compile. The error we get
-when compiling has a hint:
-
error: literal out of range for u8
- --> src/main.rs:6:17
- |
-6 | for i in 0..256 {
- | ^^^
- |
- = note: #[deny(overflowing_literals)] on by default
-
-
That’s right, since i is a u8, this overflows, and the compiler produces
-an error.
-
We can do this with inclusive ranges, however:
-
fn takes_u8(x: u8) {
- // ...
-}
-
-fn main() {
- for i in 0..=255 {
- println!("i: {}", i);
- takes_u8(i);
- }
-}
-
-
This will produce those 256 lines of output you might have been expecting.
The various “operator equals” operators, such as += and -=, are
-implementable via various traits. For example, to implement += on
-a type of your own:
Unions are kind of like enums, but they are “untagged”. Enums have a “tag”
-that stores which variant is the correct one at runtime; unions don't have
-this tag.
-
Since we can interpret the data held in the union using the wrong variant and
-Rust can’t check this for us, that means reading a union’s field is unsafe:
When are unions useful? One major use-case is interoperability with C. C APIs
-can (and depending on the area, often do) expose unions, and so this makes
-writing API wrappers for those libraries significantly easier. Additionally,
-unions also simplify Rust implementations of space-efficient or
-cache-efficient structures relying on value representation, such as
-machine-word-sized unions using the least-significant bits of aligned
-pointers to distinguish cases.
-
There’s still more improvements to come. For now, unions can only include
-Copy types and may not implement Drop. We expect to lift these
-restrictions in the future.
We've distributed a copy of "The Rust Programming Language," affectionately
-nicknamed "the book", with every version of Rust since Rust 1.0.
-
However, because it was written before Rust 1.0, it started showing its age.
-Many parts of the book are vague, because it was written before the true
-details were nailed down for the 1.0 release. It didn't do a fantastic job of
-teaching lifetimes.
-
Starting with Rust 1.18, we shipped drafts of a second edition of the book.
-The final version was shipped with Rust 1.26. The second edition is a complete
-re-write from the ground up, using the last two years of knowledge we’ve
-gained from teaching people Rust.
As of 1.31, the book has been completely updated for the 2018 Edition release.
-It's still pretty close to the second edition, but contains information about
-newer features since the book's content was frozen. Additionally, instead of
-publishing separate editions of the book, only the latest version of the book
-is published online. You’ll find brand-new explanations for a lot of Rust’s
-core concepts, new projects to build, and all kinds of other good stuff.
-Please check it out and let us
-know what you think!
The std::os module contains operating system specific functionality. You’ll
-now see more than just linux, the platform we build the documentation on.
-
We’ve long regretted that the hosted version of the documentation has been
-Linux-specific; this is a first step towards rectifying that. This is
-specific to the standard library and not for general use; we hope to improve
-this further in the future.
As Rust's documentation has grown, we've gained far more than just "The book"
-and the reference. We now have a collection of various long-form docs,
-nicknamed "the Rust Bookshelf." Different resources are added at various
-times, and we're adding new ones as more get written.
Historically, Cargo’s docs were hosted on http://doc.crates.io, which
-doesn’t follow the release train model, even though Cargo itself does. This
-led to situations where a feature would land in Cargo nightly, the docs would
-be updated, and then for up to twelve weeks, users would think that it should
-work, but it wouldn’t yet. https://doc.rust-lang.org/cargo is the new home
-of Cargo’s docs, and http://doc.crates.io now redirects there.
Rust by Example used to live at https://rustbyexample.com, but now is part of the Bookshelf!
-It can be found at https://doc.rust-lang.org/rust-by-example/. RBE lets you learn Rust through
-short code examples and exercises, as opposed to the lengthy prose of The Book.
From the title, I'm sure you can guess: this book discusses some advanced
-topics, including unsafe. It's a must-read for anyone who's working at the
-lowest levels with Rust.
By default, Rust programs will unwind the stack when a panic! happens. If you'd prefer an
-immediate abort instead, you can configure this in Cargo.toml:
Why might you choose to do this? By removing support for unwinding, you'll
-get smaller binaries. You will lose the ability to catch panics. Which choice
-is right for you depends on exactly what you're doing.
In general, Rust distinguishes between two ways that an operation can fail:
-
-
Due to an expected problem, like a file not being found.
-
Due to an unexpected problem, like an index being out of bounds for an array.
-
-
Expected problems usually arise from conditions that are outside of your
-control; robust code should be prepared for anything its environment might throw
-at it. In Rust, expected problems are handled via the Result type,
-which allows a function to return information about the problem to its caller,
-which can then handle the error in a fine-grained way.
-
Unexpected problems are bugs: they arise due to a contract or assertion being
-violated. Since they are unexpected, it doesn't make sense to handle them in a
-fine-grained way. Instead, Rust employs a "fail fast" approach by panicking,
-which by default unwinds the stack (running destructors but no other code) of
-the thread which discovered the error. Other threads continue running, but will
-discover the panic any time they try to communicate with the panicked thread
-(whether through channels or shared memory). Panics thus abort execution up to
-some "isolation boundary", with code on the other side of the boundary still
-able to run, and perhaps to "recover" from the panic in some very coarse-grained
-way. A server, for example, does not necessarily need to go down just because of
-an assertion failure in one of its threads.
-
It's also worth noting that programs may choose to abort instead of unwind,
-and so catching panics may not work. If your code relies on catch_unwind, you
-should add this to your Cargo.toml:
If any of your users choose to abort, they'll get a compile-time failure.
-
The catch_unwind API offers a way to introduce new isolation boundaries
-within a thread. There are a couple of key motivating examples:
-
-
Embedding Rust in other languages
-
Abstractions that manage threads
-
Test frameworks, because tests may panic and you don't want that to kill the test runner
-
-
For the first case, unwinding across a language boundary is undefined behavior,
-and often leads to segfaults in practice. Allowing panics to be caught means
-that you can safely expose Rust code via a C API, and translate unwinding into
-an error on the C side.
-
For the second case, consider a threadpool library. If a thread in the pool
-panics, you generally don't want to kill the thread itself, but rather catch the
-panic and communicate it to the client of the pool. The catch_unwind API is
-paired with resume_unwind, which can then be used to restart the panicking
-process on the client of the pool, where it belongs.
-
In both cases, you're introducing a new isolation boundary within a thread, and
-then translating the panic into some other form of error elsewhere.
In this chapter of the guide, we discuss a few improvements to error handling
-in Rust. The most notable of these is the introduction of the ? operator.
Rust's error handling revolves around returning Result<T, E> and using ?
-to propagate errors. For those who write many small programs and, hopefully,
-many tests, one common paper cut has been mixing entry points such as main
-and #[test]s with error handling.
-
As an example, you might have tried to write:
-
use std::fs::File;
-
-fn main() {
- let f = File::open("bar.txt")?;
-}
-
-
Since ? works by propagating the Result with an early return to the
-enclosing function, the snippet above does not work, and results today
-in the following error:
-
error[E0277]: the `?` operator can only be used in a function that returns `Result`
- or `Option` (or another type that implements `std::ops::Try`)
- --> src/main.rs:5:13
- |
-5 | let f = File::open("bar.txt")?;
- | ^^^^^^^^^^^^^^^^^^^^^^ cannot use the `?` operator in a function that returns `()`
- |
- = help: the trait `std::ops::Try` is not implemented for `()`
- = note: required by `std::ops::Try::from_error`
-
-
To solve this problem in Rust 2015, you might have written something like:
However, in this case, the run function has all the interesting logic and
-main is just boilerplate. The problem is even worse for #[test]s, since
-there tend to be a lot more of them.
-
In Rust 2018 you can instead let your #[test]s and main functions return
-a Result:
In this case, if say the file doesn't exist and there is an Err(err) somewhere,
-then main will exit with an error code (not 0) and print out a Debug
-representation of err. Note that this will always print out the Debug representation.
-If you would like to, for example, print out the Display representation of err,
-you will still have to do what you would in Rust 2015.
Getting -> Result<..> to work in the context of main and #[test]s is not
-magic. It is all backed up by a Termination trait which all valid return
-types of main and testing functions must implement. The trait is defined as:
When setting up the entry point for your application, the compiler will use this
-trait and call .report() on the Result of the main function you have written.
-
Two simplified example implementations of this trait for Result and () are:
As you can see in the case of (), a success code is simply returned.
-In the case of Result, the success case delegates to the implementation for
-() but prints out an error message and a failure exit code on Err(..).
Rust has gained a new operator, ?, that makes error handling more pleasant
-by reducing the visual noise involved. It does this by solving one simple
-problem. To illustrate, imagine we had some code to read some data from a
-file:
-
-#![allow(unused)]
-fn main() {
-use std::{io::{self, prelude::*}, fs::File};
-fn read_username_from_file() -> Result<String, io::Error> {
- let f = File::open("username.txt");
-
- let mut f = match f {
- Ok(file) => file,
- Err(e) => return Err(e),
- };
-
- let mut s = String::new();
-
- match f.read_to_string(&mut s) {
- Ok(_) => Ok(s),
- Err(e) => Err(e),
- }
-}
-}
-
-
-
Note: this code could be made simpler with a single call to
-std::fs::read_to_string,
-but we're writing it all out manually here to have an example with multiple
-errors.
-
-
This code has two paths that can fail, opening the file and reading the data
-from it. If either of these fail to work, we'd like to return an error from
-read_username_from_file. Doing so involves matching on the result of the
-I/O operations. In simple cases like this though, where we are only
-propagating errors up the call stack, the matching is just boilerplate -
-seeing it written out, in the same pattern every time, doesn't provide the
-reader with a great deal of useful information.
-
With ?, the above code looks like this:
-
-#![allow(unused)]
-fn main() {
-use std::{io::{self, prelude::*}, fs::File};
-fn read_username_from_file() -> Result<String, io::Error> {
- let mut f = File::open("username.txt")?;
- let mut s = String::new();
-
- f.read_to_string(&mut s)?;
-
- Ok(s)
-}
-}
-
-
The ? is shorthand for the entire match statements we wrote earlier. In
-other words, ? applies to a Result value, and if it was an Ok, it
-unwraps it and gives the inner value. If it was an Err, it returns from the
-function you're currently in. Visually, it is much more straightforward.
-Instead of an entire match statement, now we are just using the single "?"
-character to indicate that here we are handling errors in the standard way,
-by passing them up the call stack.
-
Seasoned Rustaceans may recognize that this is the same as the try! macro
-that's been available since Rust 1.0. And indeed, they are the same.
-Previously, read_username_from_file could have been implemented like this:
-
-#![allow(unused)]
-fn main() {
-use std::{io::{self, prelude::*}, fs::File};
-fn read_username_from_file() -> Result<String, io::Error> {
- let mut f = try!(File::open("username.txt"));
- let mut s = String::new();
-
- try!(f.read_to_string(&mut s));
-
- Ok(s)
-}
-}
-
-
So why extend the language when we already have a macro? There are multiple
-reasons. First, try! has proved to be extremely useful, and is used often
-in idiomatic Rust. It is used so often that we think it's worth having a
-sweet syntax. This sort of evolution is one of the great advantages of a
-powerful macro system: speculative extensions to the language syntax can be
-prototyped and iterated on without modifying the language itself, and in
-return, macros that turn out to be especially useful can indicate missing
-language features. This evolution, from try! to ? is a great example.
-
One of the reasons try! needs a sweeter syntax is that it is quite
-unattractive when multiple invocations of try! are used in succession.
-Consider:
-
try!(try!(try!(foo()).bar()).baz())
-
-
as opposed to
-
foo()?.bar()?.baz()?
-
-
The first is quite difficult to scan visually, and each layer of error
-handling prefixes the expression with an additional call to try!. This
-brings undue attention to the trivial error propagation, obscuring the main
-code path, in this example the calls to foo, bar and baz. This sort of
-method chaining with error handling occurs in situations like the builder
-pattern.
-
Finally, the dedicated syntax will make it easier in the future to produce
-nicer error messages tailored specifically to ?, whereas it is difficult to
-produce nice errors for macro-expanded code generally.
-
You can use ? with Result<T, E>s, but also with Option<T>. In that
-case, ? will return a value for Some(T) and return None for None. One
-current restriction is that you cannot use ? for both in the same function,
-as the return type needs to match the type you use ? on. In the future,
-this restriction will be lifted.
Macro foo can be called with 1 or 2 arguments; the second one is optional,
-but you need a whole other matcher to represent this possibility. This is
-annoying if your matchers are long. In Rust 2018, one can simply write the
-following:
The Debug trait is then implemented for Pet, with vastly less boilerplate. For example, without derive, you'd have
-to write this:
-
-#![allow(unused)]
-fn main() {
-use std::fmt;
-
-struct Pet {
- name: String,
-}
-
-impl fmt::Debug for Pet {
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
- match self {
- Pet { name } => {
- let mut debug_trait_builder = f.debug_struct("Pet");
-
- let _ = debug_trait_builder.field("name", name);
-
- debug_trait_builder.finish()
- }
- }
- }
-}
-}
-
-
Whew!
-
However, this only worked for traits provided as part of the standard
-library; it was not customizable. But now, you can tell Rust what to do when
-someone wants to derive your trait. This is used heavily in popular crates
-like serde and Diesel.
This moves macro_rules macros to be a bit closer to other kinds of items.
-
Note that you'll still need #[macro_use] to use macros you've defined
-in your own crate; this feature only works for importing macros from
-external crates.
When using procedural macros to derive traits, you will have to name the macro
-that provides the custom derive. This generally matches the name of the trait,
-but check with the documentation of the crate providing the derives to be sure.
Our __impl_log! macro is private to our module, but needs to be exported as it is called by other
-macros, and in 2015 edition all used macros must be exported.
will give an error message about not finding the __impl_log! macro. This is because unlike in
-the 2015 edition, macros are namespaced and we must import them. We could do
-
use log::{__impl_log, error};
-
-
which would make our code compile, but __impl_log is meant to be an implementation detail!
The cleanest way to handle this situation is to use the $crate:: prefix for macros, the same as
-you would for any other path. Versions of the compiler >= 1.30 will handle this in both editions:
We also have the local_inner_macros modifier that we can add to our #[macro_export] attribute.
-This has the advantage of working with older rustc versions (older versions just ignore the extra
-modifier). The downside is that it's a bit messier:
So the code knows to look for any macros used locally. But wait - this won't compile, because we
-use the format_args! macro that isn't in our local crate (hence the convoluted example). The
-solution is to add a level of indirection: we create a macro that wraps format_args, but is local
-to our crate. That way everything works in both editions (sadly we have to pollute the global
-namespace a bit, but that's ok).
-
-#![allow(unused)]
-fn main() {
-// I've used the pattern `_<my crate name>__<macro name>` to name this macro, hopefully avoiding
-// name clashes.
-#[doc(hidden)]
-#[macro_export]
-macro_rules! _log__format_args {
- ($($inner:tt)*) => {
- format_args! { $($inner)* }
- }
-}
-}
-
-
Here we're using the most general macro pattern possible, a list of token trees. We just pass
-whatever tokens we get to the inner macro, and rely on it to report errors.
Once everyone is using a rustc version >= 1.30, we can all just use the $crate:: method (2015
-crates are guaranteed to carry on compiling fine with later versions of the compiler). We need to
-wait for package managers and larger organisations to update their compilers before this happens,
-so in the mean time we can use the local_inner_macros method to support everybody. :)
The first form makes the Foo struct public to your entire crate, but not
-externally. The second form is similar, but makes Bar public for one other
-module, a::b::c in this case.
The module system is often one of the hardest things for people new to Rust. Everyone
-has their own things that take time to master, of course, but there's a root
-cause for why it's so confusing to many: while there are simple and
-consistent rules defining the module system, their consequences can feel
-inconsistent, counterintuitive and mysterious.
-
As such, the 2018 edition of Rust introduces a few new module system
-features, but they end up simplifying the module system, to make it more
-clear as to what is going on.
-
Here's a brief summary:
-
-
extern crate is no longer needed in 99% of circumstances.
-
The crate keyword refers to the current crate.
-
Paths may start with a crate name, even within submodules.
-
Paths starting with :: must reference an external crate.
-
A foo.rs and foo/ subdirectory may coexist; mod.rs is no longer needed
-when placing submodules in a subdirectory.
-
Paths in use declarations work the same as other paths.
-
-
These may seem like arbitrary new rules when put this way, but the mental
-model is now significantly simplified overall. Read on for more details!
Now, to add a new crate to your project, you can add it to your Cargo.toml,
-and then there is no step two. If you're not using Cargo, you already had to pass
---extern flags to give rustc the location of external crates, so you'd just
-keep doing what you were doing there as well.
-
-
One small note here: cargo fix will not currently automate this change. We may
-have it do this for you in the future.
There's one exception to this rule, and that's the "sysroot" crates. These are the
-crates distributed with Rust itself.
-
Usually these are only needed in very specialized situations. Starting in
-1.41, rustc accepts the --extern=CRATE_NAME flag which automatically adds
-the given crate name in a way similar to extern crate. Build tools may use
-this to inject sysroot crates into the crate's prelude. Cargo does not have a
-general way to express this, though it uses it for proc_macro crates.
-
Some examples of needing to explicitly import sysroot crates are:
-
-
std: Usually this is not neccesary, because std is automatically
-imported unless the crate is marked with #![no_std].
-
core: Usually this is not necessary, because core is automatically
-imported, unless the crate is marked with #![no_core]. For
-example, some of the internal crates used by the standard library itself
-need this.
-
proc_macro: This is automatically imported by Cargo if it is a
-proc-macro crate starting in 1.42. extern crate proc_macro; would be
-needed if you want to support older releases, or if using another build tool
-that does not pass the appropriate --extern flags to rustc.
-
alloc: Items in the alloc crate are usually accessed via re-exports in
-the std crate. If you are working with a no_std crate that supports
-allocation, then you may need to explicitly import alloc.
-
test: This is only available on the nightly channel, and is usually
-only used for the unstable benchmark support.
In use declarations and in other code, you can refer to the root of the
-current crate with the crate:: prefix. For instance, crate::foo::bar will
-always refer to the name bar inside the module foo, from anywhere else in
-the same crate.
-
The prefix :: previously referred to either the crate root or an external
-crate; it now unambiguously refers to an external crate. For instance,
-::foo::bar always refers to the name bar inside the external crate foo.
Previously, using an external crate in a module without a use import
-required a leading :: on the path.
-
// Rust 2015
-
-extern crate chrono;
-
-fn foo() {
- // this works in the crate root
- let x = chrono::Utc::now();
-}
-
-mod submodule {
- fn function() {
- // but in a submodule it requires a leading :: if not imported with `use`
- let x = ::chrono::Utc::now();
- }
-}
-
-
Now, extern crate names are in scope in the entire crate, including
-submodules.
-
// Rust 2018
-
-fn foo() {
- // this works in the crate root
- let x = chrono::Utc::now();
-}
-
-mod submodule {
- fn function() {
- // crates may be referenced directly, even in submodules
- let x = chrono::Utc::now();
- }
-}
-
// This `mod` declaration looks for the `foo` module in
-// `foo.rs` or `foo/mod.rs`.
-mod foo;
-
-
It can live in foo.rs or foo/mod.rs. If it has submodules of its own, it
-must be foo/mod.rs. So a bar submodule of foo would live at
-foo/bar.rs.
-
In Rust 2018 the restriction that a module with submodules must be named
-mod.rs is lifted. foo.rs can just be foo.rs,
-and the submodule is still foo/bar.rs. This eliminates the special
-name, and if you have a bunch of files open in your editor, you can clearly
-see their names, instead of having a bunch of tabs named mod.rs.
Rust 2018 simplifies and unifies path handling compared to Rust 2015. In Rust
-2015, paths work differently in use declarations than they do elsewhere. In
-particular, paths in use declarations would always start from the crate
-root, while paths in other code implicitly started from the current scope.
-Those differences didn't have any effect in the top-level module, which meant
-that everything would seem straightforward until working on a project large
-enough to have submodules.
-
In Rust 2018, paths in use declarations and in other code work the same way,
-both in the top-level module and in any submodule. You can use a relative path
-from the current scope, a path starting from an external crate name, or a path
-starting with crate, super, or self.
This makes it easy to move code around in a project, and avoids introducing
-additional complexity to multi-module projects.
-
If a path is ambiguous, such as if you have an external crate and a local
-module or item with the same name, you'll get an error, and you'll need to
-either rename one of the conflicting names or explicitly disambiguate the path.
-To explicitly disambiguate a path, use ::name for an external crate name, or
-self::name for a local module or item.
Rust, like many programming languages, has the concept of "keywords".
-These identifiers mean something to the language, and so you cannot use them in
-places like variable names, function names, and other places.
-Raw identifiers let you use keywords where they would not normally be allowed.
-
For example, match is a keyword. If you try to compile this function:
This feature is useful for a few reasons, but the primary motivation was
-inter-edition situations. For example, try is not a keyword in the 2015
-edition, but is in the 2018 edition. So if you have a library that is written
-in Rust 2015 and has a try function, to call it in Rust 2018, you'll need
-to use the raw identifier.
Here, async is reserved for use in async fn as well as in async || closures and
-async { .. } blocks. Meanwhile, await is reserved to keep our options open
-with respect to await!(expr) syntax. See RFC 2394 for more details.
The do catch { .. } blocks have been renamed to try { .. } and to support
-that, the keyword try is reserved in edition 2018.
-See RFC 2388 for more details.
The mental model of patterns has shifted a bit with this change, to bring it
-into line with other aspects of the language. For example, when writing a
-for loop, you can iterate over borrowed contents of a collection by
-borrowing the collection itself:
-
let my_vec: Vec<i32> = vec![0, 1, 2];
-
-for x in &my_vec { ... }
-
-
The idea is that an &T can be understood as a borrowed view of T, and
-so when you iterate, match, or otherwise destructure a &T you get a
-borrowed view of its internals as well.
-
More formally, patterns have a "binding mode," which is either by value
-(x), by reference (ref x), or by mutable reference (ref mut x). In Rust
-2015, match always started in by-value mode, and required you to explicitly
-write ref or ref mut in patterns to switch to a borrowing mode. In Rust
-2018, the type of the value being matched informs the binding mode, so that
-if you match against an &Option<String> with a Some variant, you are put
-into ref mode automatically, giving you a borrowed view of the internal
-data. Similarly, &mut Option<String> would give you a ref mut view.
In this chapter of the guide, we discuss a few improvements to ownership and lifetimes.
-One of the most notable of these is default match binding modes.
An annotation in the form of T: 'a, where T is either a type or another
-lifetime, is called an "outlives" requirement. Note that "outlives" also
-implies 'a: 'a.
-
One way in which edition 2018 helps you out in maintaining flow when writing
-programs is by removing the need to explicitly annotate these T: 'a outlives
-requirements in struct definitions. Instead, the requirements will be
-inferred from the fields present in the definitions.
-
Consider the following struct definitions in Rust 2015:
-
-#![allow(unused)]
-fn main() {
-// Rust 2015
-
-struct Ref<'a, T: 'a> {
- field: &'a T
-}
-
-// or written with a `where` clause:
-
-struct WhereRef<'a, T> where T: 'a {
- data: &'a T
-}
-
-// with nested references:
-
-struct RefRef<'a, 'b: 'a, T: 'b> {
- field: &'a &'b T,
-}
-
-// using an associated type:
-
-struct ItemRef<'a, T: Iterator>
-where
- T::Item: 'a
-{
- field: &'a T::Item
-}
-}
-
-
In Rust 2018, since the requirements are inferred, you can instead write:
The borrow checker has been enhanced to accept more code, via a mechanism
-called "non-lexical lifetimes." Consider this example:
-
fn main() {
- let mut x = 5;
-
- let y = &x;
-
- let z = &mut x;
-}
-
-
In older Rust, this is a compile-time error:
-
error[E0502]: cannot borrow `x` as mutable because it is also borrowed as immutable
- --> src/main.rs:5:18
- |
-4 | let y = &x;
- | - immutable borrow occurs here
-5 | let z = &mut x;
- | ^ mutable borrow occurs here
-6 | }
- | - immutable borrow ends here
-
-
This is because lifetimes follow "lexical scope"; that is, the borrow from y is
-considered to be held until y goes out of scope at the end of main, even though
-we never use y again. This code is fine, but the borrow checker could not handle it.
fn main() {
- let mut x = 5;
- let y = &x;
- let z = &mut x;
-
- println!("y: {}", y);
-}
-
-
Here's the error:
-
error[E0502]: cannot borrow `x` as mutable because it is also borrowed as immutable
- --> src/main.rs:5:18
- |
-4 | let y = &x;
- | - immutable borrow occurs here
-5 | let z = &mut x;
- | ^ mutable borrow occurs here
-...
-8 | }
- | - immutable borrow ends here
-
-
With non-lexical lifetimes, the error changes slightly:
-
error[E0502]: cannot borrow `x` as mutable because it is also borrowed as immutable
- --> src/main.rs:5:13
- |
-4 | let y = &x;
- | -- immutable borrow occurs here
-5 | let z = &mut x;
- | ^^^^^^ mutable borrow occurs here
-6 |
-7 | println!("y: {}", y);
- | - borrow later used here
-
-
Instead of pointing to where y goes out of scope, it shows you where
-the conflicting borrow occurs. This makes these sorts of errors far easier to debug.
Rust 2018 allows you to explicitly mark where a lifetime is elided, for types
-where this elision might otherwise be unclear. To do this, you can use the
-special lifetime '_ much like you can explicitly mark that a type is inferred
-with the syntax let x: _ = ..;.
-
Let's say, for whatever reason, that we have a simple wrapper around &'a str:
In the Rust 2015 snippet above, we've used -> StrWrap. However, unless you take
-a look at the definition of StrWrap, it is not clear that the returned value
-is actually borrowing something. Therefore, starting with Rust 2018, it is
-deprecated to leave off the lifetime parameters for non-reference-types (types
-other than & and &mut). Instead, where you previously wrote -> StrWrap,
-you should now write -> StrWrap<'_>, making clear that borrowing is occurring.
-
What exactly does '_ mean? It depends on the context!
-In output contexts, as in the return type of make_wrapper,
-it refers to a single lifetime for all "output" locations.
-In input contexts, a fresh lifetime is generated for each "input location".
-More concretely, to understand input contexts, consider the following example:
If you're producing a library that you intend to be used from C (or another
-language through a C FFI), there's no need for Rust to include Rust-specific
-stuff in the final object code. For libraries like that, you'll want to use
-the cdylib crate type in your Cargo.toml:
-
[lib]
-crate-type = ["cdylib"]
-
-
This will produce a smaller binary, with no Rust-specific information inside
-of it.
Allocators are the way that programs in Rust obtain memory from the system at
-runtime. Previously, Rust did not allow changing the way memory is obtained,
-which prevented some use cases. On some platforms, this meant using jemalloc,
-on others, the system allocator, but there was no way for users to control
-this key component. With 1.28.0, the #[global_allocator] attribute is now
-stable, which allows Rust programs to set their allocator to the system
-allocator, as well as define new allocators by implementing the GlobalAlloc
-trait.
-
The default allocator for Rust programs on some platforms is jemalloc. The
-standard library now provides a handle to the system allocator, which can be
-used to switch to the system allocator when desired, by declaring a static
-and marking it with the #[global_allocator] attribute.
-
use std::alloc::System;
-
-#[global_allocator]
-static GLOBAL: System = System;
-
-fn main() {
- let mut v = Vec::new();
- // This will allocate memory using the system allocator.
- v.push(1);
-}
-
-
However, sometimes you want to define a custom allocator for a given
-application domain. This is also relatively easy to do by implementing the
-GlobalAlloc trait. You can read more about how to do this in the
-documentation.
Rust’s standard library is two-tiered: there’s a small core library,
-libcore, and the full standard library, libstd, that builds on top of it.
-libcore is completely platform agnostic, and requires only a handful of
-external symbols to be defined. Rust’s libstd builds on top of libcore,
-adding support for things like memory allocation and I/O. Applications using
-Rust in the embedded space, as well as those writing operating systems, often
-eschew libstd, using only libcore.
-
As an additional note, while building libraries with libcore is supported
-today, building full applications is not yet stable.
-
To use libcore, add this flag to your crate root:
-
#![no_std]
-
-
This will remove the standard library, and bring the core crate into your
-namespace for use:
At the release of Rust 1.0, we only supported the GNU toolchain on Windows. With the
-release of Rust 1.2, we introduced initial support for the MSVC toolchain. After that,
-as support matured, we eventually made it the default choice for Windows users.
-
The difference between the two matters for interacting with C. If you're using a library
-built with one toolchain or another, you need to match that with the appropriate Rust
-toolchain. If you're not sure, go with MSVC; it's the default for good reason.
-
To use this feature, simply use Rust on Windows, and the installer will default to it.
-If you'd prefer to switch to the GNU toolchain, you can install it with Rustup:
By default, Rust will statically link all Rust code. However, if you use the
-standard library, it will dynamically link to the system's libc
-implementation.
-
If you'd like a 100% static binary, the MUSL libc can be used on Linux.
If you're not sure what you want, it's probably x86_64-unknown-linux-musl,
-for 64-bit Linux. We'll be using this target in this guide, but the
-instructions remain the same for other targets, just change the name wherever
-we mention the target.
-
To get support for this target, you use rustup:
-
$ rustup target add x86_64-unknown-linux-musl
-
-
This will install support for the default toolchain; to install for other toolchains,
-add the --toolchain flag. For example:
Rust has gained support for WebAssembly, meaning
-that you can run Rust code in your browser, client-side.
-
In Rust 1.14, we gained support through
-emscripten. With it
-installed, you can write Rust code and have it produce
-asm.js (the precusor to wasm) and/or WebAssembly.
However, in the meantime, Rust has also grown its own support, independent
-from Emscripten. This is known as "the unknown target", because instead of
-wasm32-unknown-emscripten, it's wasm32-unknown-unknown. This will be
-the preferred target to use once it's ready, but for now, it's really
-only well-supported in nightly.
You can now create compile-fail tests in Rustdoc, like this:
-
-#![allow(unused)]
-fn main() {
-/// ```compile_fail
-/// let x = 5;
-/// x += 2; // shouldn't compile!
-/// ```
-fn foo() {}
-}
-
-
Please note that these kinds of tests can be more fragile than others, as
-additions to Rust may cause code to compile when it previously would not.
-Consider the first release with ?, for example: code using ? would fail
-to compile on Rust 1.21, but compile successfully on Rust 1.22, causing your
-test suite to start failing.
Rustdoc lets you write documentation comments in Markdown. At Rust 1.0, we
-were using the hoedown markdown implementation, written in C. Markdown is
-more of a family of implementations of an idea, and so hoedown had its own
-dialect, like many parsers. The CommonMark project
-has attempted to define a more strict version of Markdown, and so now, Rustdoc
-uses it by default.
-
As of Rust 1.23, we still defaulted to hoedown, but you could enable
-Commonmark via a flag, --enable-commonmark. Today, we only support
-CommonMark.
(this tool has its own versioning scheme and works with all Rust versions)
-
The Rustup tool has become the recommended way to
-install Rust, and is advertised on our website. Its powers go further than
-that though, allowing you to manage various versions, components, and
-platforms.
To install Rust through Rustup, you can go to
-https://www.rust-lang.org/install.html, which will let you know how to do
-so on your platform. This will install both rustup itself and the stable
-version of rustc and cargo.
-
To install a specific Rust version, you can use rustup toolchain install:
To set the default toolchain to something other than stable:
-
$ rustup default nightly
-
-
To uninstall a specific Rust version, you can use rustup toolchain uninstall:
-
$ rustup toolchain uninstall 1.30.0
-
-
To use a toolchain other than the default, use rustup run:
-
$ rustup run nightly cargo build
-
-
There's also an alias for this that's a little shorter:
-
$ cargo +nightly build
-
-
If you'd like to have a different default per-directory, that's easy too!
-If you run this inside of a project:
-
$ rustup override set nightly
-
-
Or, if you'd like to target a different version of Rust:
-
$ rustup override set 1.30.0
-
-
Then when you're in that directory, any invocations of rustc or cargo
-will use that toolchain. To share this with others, you can create a
-rust-toolchain file with the contents of a toolchain, and check it into
-source control. Now, when someone clones your project, they'll get the
-right version without needing to override set themselves.
Components are used to install certain kinds of tools. While cargo-install
-has you covered for most tools, some tools need deep integration into the
-compiler. Rustup knows exactly what version of the compiler you're using, and
-so it's got just the information that these tools need.
-
Components are per-toolchain, so if you want them to be available to more
-than one toolchain, you'll need to install them multiple times. In the
-following examples, add a --toolchain flag, set to the toolchain you
-want to install for, nightly for example. Without this flag, it will
-install the component for the default toolchain.
-
To see the full list of components you can install:
-
$ rustup component list
-
-
Next, let's talk about some popular components and when you might want to
-install them.
This first component is installed by default when you install a toolchain. It
-contains a copy of Rust's documentation, so that you can read it offline.
-
This component cannot be removed for now; if that's of interest, please
-comment on this
-issue.
The rust-src component can give you a local copy of Rust's source code. Why
-might you need this? Well, autocompletion tools like Racer use this
-information to know more about the functions you're trying to call.
Many IDE features are built off of the langserver
-protocol. To gain support for Rust with these IDEs,
-you'll need to install the Rust language sever, aka the "RLS":
-
$ rustup component add rls
-
-
For more information about integrating this into your IDE, see the RLS
-documentation.
There are several components in a "preview" stage. These components currently
-have -preview in their name, and this indicates that they're not quite 100%
-ready for general consumption yet. Please try them out and give us feedback,
-but know that they do not follow Rust's stability guarantees, and are still
-actively changing, possibly in backwards-incompatible ways.
Here, we’re taking two slices, and adding the numbers together, placing the
-result in a third slice. The simplest possible way to do this would be to do
-exactly what the code does, and loop through each set of elements, add them
-together, and store it in the result. However, compilers can often do better.
-LLVM will usually “autovectorize” code like this, which is a fancy term for
-“use SIMD.” Imagine that a and b were both 16 elements long. Each element
-is a u8, and so that means that each slice would be 128 bits of data. Using
-SIMD, we could put both a and b into 128 bit registers, add them together
-in a single instruction, and then copy the resulting 128 bits into c.
-That’d be much faster!
-
While stable Rust has always been able to take advantage of
-autovectorization, sometimes, the compiler just isn’t smart enough to realize
-that we can do something like this. Additionally, not every CPU has these
-features, and so LLVM may not use them so your program can be used on a wide
-variety of hardware. The std::arch module allows us to use these kinds of
-instructions directly, which means we don’t need to rely on a smart compiler.
-Additionally, it includes some features that allow us to choose a particular
-implementation based on various criteria. For example:
Here, we use cfg flags to choose the correct version based on the machine
-we’re targeting; on x86 we use that version, and on x86_64 we use its
-version. We can also choose at runtime:
Here, we have two versions of the function: one which uses AVX2, a specific
-kind of SIMD feature that lets you do 256-bit operations. The
-is_x86_feature_detected! macro will generate code that detects if your CPU
-supports AVX2, and if so, calls the foo_avx2 function. If not, then we fall
-back to a non-AVX implementation, foo_fallback. This means that our code will
-run super fast on CPUs that support AVX2, but still work on ones that don’t,
-albeit slower.
-
If all of this seems a bit low-level and fiddly, well, it is! std::arch is
-specifically primitives for building these kinds of things. We hope to
-eventually stabilize a std::simd module with higher-level stuff in the
-future. But landing the basics now lets the ecosystem experiment with higher
-level libraries starting today. For example, check out the
-faster crate. Here’s a code snippet
-with no SIMD:
It looks almost the same: simd_iter instead of iter, simd_map instead of map,
-f32s(2.0) instead of 2.0. But you get a SIMD-ified version generated for you.
-
Beyond that, you may never write any of this yourself, but as always, the
-libraries you depend on may. For example, the regex crate contains these SIMD
-speedups without you needing to do anything at all!
Have you ever tried to pattern match on the contents and structure of a slice?
-Rust 2018 will let you do just that.
-
For example, say we want to accept a list of names and respond to that with a
-greeting. With slice patterns, we can do that easy as pie with:
-
fn main() {
- greet(&[]);
- // output: Bummer, there's no one here :(
- greet(&["Alan"]);
- // output: Hey, there Alan! You seem to be alone.
- greet(&["Joan", "Hugh"]);
- // output: Hello, Joan and Hugh. Nice to see you are exactly 2!
- greet(&["John", "Peter", "Stewart"]);
- // output: Hey everyone, we seem to be 3 here today.
-}
-
-fn greet(people: &[&str]) {
- match people {
- [] => println!("Bummer, there's no one here :("),
- [only_one] => println!("Hey, there {}! You seem to be alone.", only_one),
- [first, second] => println!(
- "Hello, {} and {}. Nice to see you are exactly 2!",
- first, second
- ),
- _ => println!("Hey everyone, we seem to be {} here today.", people.len()),
- }
-}
-
-
Now, you don't have to check the length first.
-
We can also match on arrays like so:
-
-#![allow(unused)]
-fn main() {
-let arr = [1, 2, 3];
-
-assert_eq!("ends with 3", match arr {
- [_, _, 3] => "ends with 3",
- [a, b, c] => "ends with something else",
-});
-}
-
In the first example, note in particular the _ => ... pattern.
-Since we are matching on a slice, it could be of any length, so we need a
-"catch all pattern" to handle it. If we forgot the _ => ... or
-identifier => ... pattern, we would instead get an error saying:
-
error[E0004]: non-exhaustive patterns: `&[_, _, _]` not covered
-
-
If we added a case for a slice of size 3 we would instead get:
-
error[E0004]: non-exhaustive patterns: `&[_, _, _, _]` not covered
-
In the second example above, since arrays in Rust are of known lengths,
-we have to match on exactly three elements.
-If we try to match on 2 or 4 elements,we get the errors:
-
error[E0527]: pattern requires 2 elements but array has 3
-
-
and
-
error[E0527]: pattern requires 4 elements but array has 3
-
If you're writing a library, and you'd like to deprecate something, you can
-use the deprecated attribute:
-
-#![allow(unused)]
-fn main() {
-#[deprecated(
- since = "0.2.1",
- note = "Please use the bar function instead"
-)]
-pub fn foo() {
- // ...
-}
-}
-
-
This will give your users a warning if they use the deprecated functionality:
-
Compiling playground v0.0.1 (file:///playground)
-warning: use of deprecated item 'foo': Please use the bar function instead
- --> src/main.rs:10:5
- |
-10 | foo();
- | ^^^
- |
- = note: #[warn(deprecated)] on by default
-
-
-
Both since and note are optional.
-
since can be in the future; you can put whatever you'd like, and what's put in
-there isn't checked.
We're always working on error improvements, and there are little improvements
-in almost every Rust version, but in Rust 1.12, a significant overhaul of the
-error message system was created.
-
For example, here's some code that produces an error:
-
fn main() {
- let mut x = 5;
- let y = &x;
- x += 1;
- println!("{} {}", x, y);
-}
-
-
Here's the error in Rust 1.11:
-
foo.rs:4:5: 4:11 error: cannot assign to `x` because it is borrowed [E0506]
-foo.rs:4 x += 1;
- ^~~~~~
-foo.rs:3:14: 3:15 note: borrow of `x` occurs here
-foo.rs:3 let y = &x;
- ^
-foo.rs:4:5: 4:11 help: run `rustc --explain E0506` to see a detailed explanation
-error: aborting due to previous error
-
-
Here's the error in Rust 1.28:
-
error[E0506]: cannot assign to `x` because it is borrowed
- --> foo.rs:4:5
- |
-3 | let y = &x;
- | - borrow of `x` occurs here
-4 | x += 1;
- | ^^^^^^ assignment to borrowed `x` occurs here
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0506`.
-
-
This error isn't terribly different, but shows off how the format has changed. It shows
-off your code in context, rather than just showing the text of the lines themselves.
Back in September of 2016, we blogged about Incremental
-Compilation. While
-that post goes into the details, the idea is basically this: when you’re
-working on a project, you often compile it, then change something small, then
-compile again. Historically, the compiler has compiled your entire project,
-no matter how little you’ve changed the code. The idea with incremental
-compilation is that you only need to compile the code you’ve actually
-changed, which means that that second build is faster.
-
This is now turned on by default. This means that your builds should be
-faster! Don’t forget about cargo check when trying to get the lowest possible
-build times.
-
This is still not the end story for compiler performance generally, nor
-incremental compilation specifically. We have a lot more work planned in the
-future.
-
One small note about this change: it makes builds faster, but makes the final
-binary a bit slower. For this reason, it's not turned on in release builds.
You can define traits, structs, and enums that have “associated functions”:
-
struct Struct;
-
-impl Struct {
- fn foo() {
- println!("foo is an associated function of Struct");
- }
-}
-
-fn main() {
- Struct::foo();
-}
-
-
These are called “associated functions” because they are functions that are
-associated with the type, that is, they’re attached to the type itself, and
-not any particular instance.
-
Rust 1.20 adds the ability to define “associated constants” as well:
-
struct Struct;
-
-impl Struct {
- const ID: u32 = 0;
-}
-
-fn main() {
- println!("the ID of Struct is: {}", Struct::ID);
-}
-
-
That is, the constant ID is associated with Struct. Like functions,
-associated constants work with traits and enums as well.
-
Traits have an extra ability with associated constants that gives them some
-extra power. With a trait, you can use an associated constant in the same way
-you’d use an associated type: by declaring it, but not giving it a value. The
-implementor of the trait then declares its value upon implementation:
This is slightly unwieldy, but more importantly, because they’re functions,
-they cannot be used in constant expressions, even though they only return a
-constant. Because of this, a design for Float would also have to include
-constants as well:
Using just the trait name for trait objects turned out to be a bad decision.
-The current syntax is often ambiguous and confusing, even to veterans,
-and favors a feature that is not more frequently used than its alternatives,
-is sometimes slower, and often cannot be used at all when its alternatives can.
-
Furthermore, with impl Trait arriving, "impl Trait vs dyn Trait" is much
-more symmetric, and therefore a bit nicer, than "impl Trait vs Trait".
-impl Trait is explained here.
-
In the new edition, you should therefore prefer dyn Trait to just Trait
-where you need a trait object.
impl Trait is the new way to specify unnamed but concrete types that
-implement a specific trait. There are two places you can put it: argument
-position, and return position.
That is, it's a slightly shorter syntax for a generic type parameter. It
-means, "arg is an argument that takes any type that implements the Trait
-trait."
-
However, there's also an important technical difference between T: Trait
-and impl Trait here. When you write the former, you can specify the type of
-T at the call site with turbo-fish syntax as with foo::<usize>(1). In the
-case of impl Trait, if it is used anywhere in the function definition, then
-you can't use turbo-fish at all. Therefore, you should be mindful that
-changing both from and to impl Trait can constitute a breaking change for
-the users of your code.
In return position, this feature is more interesting. It means "I am
-returning some type that implements the Trait trait, but I'm not going to
-tell you exactly what the type is." Before impl Trait, you could do this
-with trait objects:
However, this has some overhead: the Box<T> means that there's a heap
-allocation here, and this will use dynamic dispatch. See the dyn Trait
-section for an explanation of this syntax. But we only ever return one
-possible thing here, the Box<i32>. This means that we're paying for dynamic
-dispatch, even though we don't use it!
-
With impl Trait, the code above could be written like this:
In Rust, closures have a unique, un-writable type. They do implement the Fn
-family of traits, however. This means that previously, the only way to return
-a closure from a function was to use a trait object:
The above is all you need to know to get going with impl Trait, but for
-some more nitty-gritty details: type parameters and impl Trait work
-slightly differently when they're in argument position versus return
-position. Consider this function:
-
fn foo<T: Trait>(x: T) {
-
-
When you call it, you set the type, T. "you" being the caller here. This
-signature says "I accept any type that implements Trait." ("any type" ==
-universal in the jargon)
-
This version:
-
fn foo<T: Trait>() -> T {
-
-
is similar, but also different. You, the caller, provide the type you want,
-T, and then the function returns it. You can see this in Rust today with
-things like parse or collect:
pub fn parse<F>(&self) -> Result<F, <F as FromStr>::Err> where
- F: FromStr,
-
-
Same general idea, though with a result type and FromStr has an associated
-type... anyway, you can see how F is in the return position here. So you
-have the ability to choose.
-
With impl Trait, you're saying "hey, some type exists that implements this
-trait, but I'm not gonna tell you what it is." So now, the caller can't
-choose, and the function itself gets to choose. If we tried to define parse
-with Result<impl F,... as the return type, it wouldn't work.
As previously mentioned, as a start, you will only be able to use impl Trait
-as the argument or return type of a free or inherent function. However,
-impl Trait can't be used inside implementations of traits, nor can it be
-used as the type of a let binding or inside a type alias. Some of these
-restrictions will eventually be lifted. For more information, see the
-tracking issue on impl Trait.
+
diff --git a/docs/searcher.js b/docs/searcher.js
index 586a5c4..d2b0aee 100644
--- a/docs/searcher.js
+++ b/docs/searcher.js
@@ -296,7 +296,7 @@ window.search = window.search || {};
}
if (url.params.hasOwnProperty(URL_MARK_PARAM)) {
- var words = url.params[URL_MARK_PARAM].split(' ');
+ var words = decodeURIComponent(url.params[URL_MARK_PARAM]).split(' ');
marker.mark(words, {
exclude: mark_exclude
});
diff --git a/docs/searchindex.js b/docs/searchindex.js
index f0d674c..96dcee6 100644
--- a/docs/searchindex.js
+++ b/docs/searchindex.js
@@ -1 +1 @@
-Object.assign(window.search, {"doc_urls":["introduction.html#序文","editions/index.html#エディションとは","editions/index.html#互換性","editions/creating-a-new-project.html#新しいプロジェクトを作成する","editions/transitioning-an-existing-project-to-a-new-edition.html#既存のプロジェクトのエディションを移行する","editions/transitioning-an-existing-project-to-a-new-edition.html#あなたのコードを新しいエディションでコンパイルできるようにする","editions/transitioning-an-existing-project-to-a-new-edition.html#新機能を使うために新たなエディションを有効化する","editions/transitioning-an-existing-project-to-a-new-edition.html#新しいエディションで慣用的なコードを書く","rust-2015/index.html#rust-2015","rust-2018/index.html#rust-2018","rust-2018/edition-changes.html#2018-specific-changes","rust-2018/edition-changes.html#cargo","rust-2018/module-system/index.html#module-system","rust-2018/module-system/raw-identifiers.html#raw-identifiers","rust-2018/module-system/raw-identifiers.html#motivation","rust-2018/module-system/raw-identifiers.html#new-keywords","rust-2018/module-system/raw-identifiers.html#async-and-await","rust-2018/module-system/raw-identifiers.html#try","rust-2018/module-system/path-clarity.html#path-clarity","rust-2018/module-system/path-clarity.html#more-details","rust-2018/module-system/path-clarity.html#no-more-extern-crate","rust-2018/module-system/path-clarity.html#the-crate-keyword-refers-to-the-current-crate","rust-2018/module-system/path-clarity.html#extern-crate-paths","rust-2018/module-system/path-clarity.html#no-more-modrs","rust-2018/module-system/path-clarity.html#use-paths","rust-2018/module-system/more-visibility-modifiers.html#more-visibility-modifiers","rust-2018/module-system/nested-imports-with-use.html#nested-imports-with-use","rust-2018/error-handling-and-panics/index.html#error-handling-and-panics","rust-2018/error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.html#the--operator-for-easier-error-handling","rust-2018/error-handling-and-panics/question-mark-in-main-and-tests.html#-in-main-and-tests","rust-2018/error-handling-and-panics/question-mark-in-main-and-tests.html#more-details","rust-2018/error-handling-and-panics/controlling-panics-with-std-panic.html#controlling-panics-with-stdpanic","rust-2018/error-handling-and-panics/aborting-on-panic.html#aborting-on-panic","rust-2018/control-flow/index.html#control-flow","rust-2018/control-flow/loops-can-break-with-a-value.html#loops-can-break-with-a-value","rust-2018/control-flow/async-await-for-easier-concurrency.html#asyncawait-for-easier-concurrency","rust-2018/trait-system/index.html#trait-system","rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html#impl-trait-for-returning-complex-types-with-ease","rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html#argument-position","rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html#return-position","rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html#impl-trait-and-closures","rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html#more-details","rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html#using-impl-trait-in-more-places","rust-2018/trait-system/dyn-trait-for-trait-objects.html#dyn-trait-for-trait-objects","rust-2018/trait-system/dyn-trait-for-trait-objects.html#more-details","rust-2018/trait-system/more-container-types-support-trait-objects.html#more-container-types-support-trait-objects","rust-2018/trait-system/associated-constants.html#associated-constants","rust-2018/trait-system/no-anon-params.html#no-more-anonymous-trait-parameters","rust-2018/slice-patterns.html#slice-patterns","rust-2018/slice-patterns.html#more-details","rust-2018/slice-patterns.html#exhaustive-patterns","rust-2018/slice-patterns.html#arrays-and-exact-lengths","rust-2018/slice-patterns.html#in-the-pipeline","rust-2018/ownership-and-lifetimes/index.html#ownership-and-lifetimes","rust-2018/ownership-and-lifetimes/non-lexical-lifetimes.html#non-lexical-lifetimes","rust-2018/ownership-and-lifetimes/non-lexical-lifetimes.html#better-errors","rust-2018/ownership-and-lifetimes/default-match-bindings.html#default-match-bindings","rust-2018/ownership-and-lifetimes/default-match-bindings.html#more-details","rust-2018/ownership-and-lifetimes/the-anonymous-lifetime.html#_-the-anonymous-lifetime","rust-2018/ownership-and-lifetimes/the-anonymous-lifetime.html#more-details","rust-2018/ownership-and-lifetimes/lifetime-elision-in-impl.html#lifetime-elision-in-impl","rust-2018/ownership-and-lifetimes/inference-in-structs.html#t-a-inference-in-structs","rust-2018/ownership-and-lifetimes/inference-in-structs.html#more-details","rust-2018/ownership-and-lifetimes/simpler-lifetimes-in-static-and-const.html#simpler-lifetimes-in-static-and-const","rust-2018/data-types/index.html#data-types","rust-2018/data-types/field-init-shorthand.html#field-init-shorthand","rust-2018/data-types/inclusive-ranges.html#-for-inclusive-ranges","rust-2018/data-types/128-bit-integers.html#128-bit-integers","rust-2018/data-types/operator-equals-are-now-implementable.html#operator-equals-are-now-implementable","rust-2018/data-types/union-for-an-unsafe-form-of-enum.html#union-for-an-unsafe-form-of-enum","rust-2018/data-types/choosing-alignment-with-the-repr-attribute.html#choosing-alignment-with-the-repr-attribute","rust-2018/simd-for-faster-computing.html#simd-for-faster-computing","rust-2018/macros/index.html#macros","rust-2018/macros/custom-derive.html#custom-derive","rust-2018/macros/macro-changes.html#macro-changes","rust-2018/macros/macro-changes.html#macro_rules-style-macros","rust-2018/macros/macro-changes.html#procedural-macros","rust-2018/macros/macro-changes.html#more-details","rust-2018/macros/macro-changes.html#local-helper-macros","rust-2018/macros/at-most-once.html#at-most-one-repetition","rust-2018/the-compiler/index.html#the-compiler","rust-2018/the-compiler/improved-error-messages.html#improved-error-messages","rust-2018/the-compiler/incremental-compilation-for-faster-compiles.html#incremental-compilation","rust-2018/the-compiler/an-attribute-for-deprecation.html#an-attribute-for-deprecation","rust-2018/rustup-for-managing-rust-versions.html#rustup-for-managing-rust-versions","rust-2018/rustup-for-managing-rust-versions.html#for-installing-rust","rust-2018/rustup-for-managing-rust-versions.html#for-updating-your-installation","rust-2018/rustup-for-managing-rust-versions.html#managing-versions","rust-2018/rustup-for-managing-rust-versions.html#installing-other-targets","rust-2018/rustup-for-managing-rust-versions.html#installing-components","rust-2018/rustup-for-managing-rust-versions.html#rust-docs-for-local-documentation","rust-2018/rustup-for-managing-rust-versions.html#rust-src-for-a-copy-of-rusts-source-code","rust-2018/rustup-for-managing-rust-versions.html#rustfmt-for-automatic-code-formatting","rust-2018/rustup-for-managing-rust-versions.html#rls-for-ide-integration","rust-2018/rustup-for-managing-rust-versions.html#clippy-for-more-lints","rust-2018/rustup-for-managing-rust-versions.html#the-preview-components","rust-2018/cargo-and-crates-io/index.html#cargo-and-cratesio","rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.html#cargo-check-for-faster-checking","rust-2018/cargo-and-crates-io/cargo-install-for-easy-installation-of-tools.html#cargo-install-for-easy-installation-of-tools","rust-2018/cargo-and-crates-io/cargo-install-for-easy-installation-of-tools.html#cargo-extensions","rust-2018/cargo-and-crates-io/cargo-new-defaults-to-a-binary-project.html#cargo-new-defaults-to-a-binary-project","rust-2018/cargo-and-crates-io/cargo-rustc-for-passing-arbitrary-flags-to-rustc.html#cargo-rustc-for-passing-arbitrary-flags-to-rustc","rust-2018/cargo-and-crates-io/cargo-rustc-for-passing-arbitrary-flags-to-rustc.html#note","rust-2018/cargo-and-crates-io/cargo-workspaces-for-multi-package-projects.html#cargo-workspaces-for-multi-package-projects","rust-2018/cargo-and-crates-io/multi-file-examples.html#multi-file-examples","rust-2018/cargo-and-crates-io/replacing-dependencies-with-patch.html#replacing-dependencies-with-patch","rust-2018/cargo-and-crates-io/cargo-can-use-a-local-registry-replacement.html#cargo-can-use-a-local-registry-replacement","rust-2018/cargo-and-crates-io/crates-io-disallows-wildcard-dependencies.html#cratesio-disallows-wildcard-dependencies","rust-2018/documentation/index.html#documentation","rust-2018/documentation/new-editions-of-the-book.html#new-editions-of-the-the-book","rust-2018/documentation/the-rust-bookshelf.html#the-rust-bookshelf","rust-2018/documentation/the-rust-bookshelf.html#the-cargo-book","rust-2018/documentation/the-rust-bookshelf.html#the-rustdoc-book","rust-2018/documentation/the-rust-bookshelf.html#rust-by-example","rust-2018/documentation/the-rustonomicon.html#the-rustonomicon","rust-2018/documentation/std-os-has-documentation-for-all-platforms.html#stdos-has-documentation-for-all-platforms","rust-2018/rustdoc/index.html#rustdoc","rust-2018/rustdoc/documentation-tests-can-now-compile-fail.html#documentation-tests-can-now-compile-fail","rust-2018/rustdoc/rustdoc-uses-commonmark.html#rustdoc-uses-commonmark","rust-2018/platform-and-target-support/index.html#platform-and-target-support","rust-2018/platform-and-target-support/libcore-for-low-level-rust.html#libcore-for-low-level-rust","rust-2018/platform-and-target-support/webassembly-support.html#webassembly-support","rust-2018/platform-and-target-support/global-allocators.html#global-allocators","rust-2018/platform-and-target-support/msvc-toolchain-support.html#msvc-toolchain-support","rust-2018/platform-and-target-support/musl-support-for-fully-static-binaries.html#musl-support-for-fully-static-binaries","rust-2018/platform-and-target-support/musl-support-for-fully-static-binaries.html#installing-musl-support","rust-2018/platform-and-target-support/musl-support-for-fully-static-binaries.html#building-with-musl","rust-2018/platform-and-target-support/cdylib-crates-for-c-interoperability.html#cdylib-crates-for-c-interoperability","rust-next/index.html#次のエディション","rust-next/edition-changes.html#次のエディションに特有の変更","rust-next/dbg-macro.html#dbg-マクロ","rust-next/no-jemalloc.html#デフォルトでjemallocを使わない","rust-next/uniform-paths.html#統一的なパス","rust-next/literal-macro-matcher.html#リテラルマクロマッチャ","rust-next/qustion-mark-operator-in-macros.html#マクロ内の演算子","rust-next/const-fn.html#const-fn","rust-next/const-fn.html#整数の算術演算および比較演算","rust-next/const-fn.html#多くのブーリアン演算","rust-next/const-fn.html#配列構造体列挙型タプルの生成","rust-next/const-fn.html#他のconst関数の呼び出し","rust-next/const-fn.html#配列やスライスの添字式","rust-next/const-fn.html#構造体やタプルのフィールドアクセス","rust-next/const-fn.html#定数読み出し","rust-next/const-fn.html#参照の--と-","rust-next/const-fn.html#キャストただし生ポインタから整数へのキャストは除く","rust-next/const-fn.html#論駁不可能な分配パターン","rust-next/const-fn.html#let-束縛","rust-next/const-fn.html#代入","rust-next/const-fn.html#unsafe-fn-の呼び出し","rust-next/pin.html#ピン留め","rust-next/no-more-fnbox.html#fnboxは不要に","rust-next/alternative-cargo-registries.html#cargoレジストリが選択できるように","rust-next/tryfrom-and-tryinto.html#tryfromとtryinto","rust-next/future.html#futureトレイト","rust-next/alloc.html#allocクレート","rust-next/maybe-uninit.html#maybeuninit","rust-next/cargo-vendor.html#cargo-vendor"],"index":{"documentStore":{"docInfo":{"0":{"body":3,"breadcrumbs":0,"title":0},"1":{"body":7,"breadcrumbs":0,"title":0},"10":{"body":68,"breadcrumbs":8,"title":3},"100":{"body":89,"breadcrumbs":14,"title":5},"101":{"body":45,"breadcrumbs":16,"title":6},"102":{"body":14,"breadcrumbs":11,"title":1},"103":{"body":68,"breadcrumbs":14,"title":5},"104":{"body":60,"breadcrumbs":10,"title":3},"105":{"body":81,"breadcrumbs":10,"title":3},"106":{"body":131,"breadcrumbs":14,"title":5},"107":{"body":42,"breadcrumbs":12,"title":4},"108":{"body":12,"breadcrumbs":4,"title":1},"109":{"body":146,"breadcrumbs":9,"title":3},"11":{"body":33,"breadcrumbs":6,"title":1},"110":{"body":36,"breadcrumbs":7,"title":2},"111":{"body":42,"breadcrumbs":7,"title":2},"112":{"body":11,"breadcrumbs":7,"title":2},"113":{"body":29,"breadcrumbs":7,"title":2},"114":{"body":32,"breadcrumbs":5,"title":1},"115":{"body":40,"breadcrumbs":9,"title":3},"116":{"body":13,"breadcrumbs":4,"title":1},"117":{"body":51,"breadcrumbs":13,"title":5},"118":{"body":62,"breadcrumbs":9,"title":3},"119":{"body":16,"breadcrumbs":8,"title":3},"12":{"body":11,"breadcrumbs":6,"title":2},"120":{"body":87,"breadcrumbs":13,"title":4},"121":{"body":91,"breadcrumbs":9,"title":2},"122":{"body":110,"breadcrumbs":9,"title":2},"123":{"body":76,"breadcrumbs":11,"title":3},"124":{"body":26,"breadcrumbs":15,"title":5},"125":{"body":70,"breadcrumbs":13,"title":3},"126":{"body":19,"breadcrumbs":12,"title":2},"127":{"body":50,"breadcrumbs":13,"title":4},"128":{"body":3,"breadcrumbs":0,"title":0},"129":{"body":0,"breadcrumbs":0,"title":0},"13":{"body":82,"breadcrumbs":8,"title":2},"130":{"body":112,"breadcrumbs":2,"title":1},"131":{"body":28,"breadcrumbs":2,"title":1},"132":{"body":16,"breadcrumbs":0,"title":0},"133":{"body":14,"breadcrumbs":0,"title":0},"134":{"body":8,"breadcrumbs":0,"title":0},"135":{"body":30,"breadcrumbs":4,"title":2},"136":{"body":10,"breadcrumbs":2,"title":0},"137":{"body":13,"breadcrumbs":2,"title":0},"138":{"body":33,"breadcrumbs":2,"title":0},"139":{"body":17,"breadcrumbs":3,"title":1},"14":{"body":30,"breadcrumbs":7,"title":1},"140":{"body":13,"breadcrumbs":2,"title":0},"141":{"body":25,"breadcrumbs":2,"title":0},"142":{"body":15,"breadcrumbs":2,"title":0},"143":{"body":10,"breadcrumbs":2,"title":0},"144":{"body":12,"breadcrumbs":2,"title":0},"145":{"body":11,"breadcrumbs":2,"title":0},"146":{"body":12,"breadcrumbs":2,"title":0},"147":{"body":12,"breadcrumbs":2,"title":0},"148":{"body":19,"breadcrumbs":4,"title":2},"149":{"body":11,"breadcrumbs":0,"title":0},"15":{"body":5,"breadcrumbs":8,"title":2},"150":{"body":47,"breadcrumbs":2,"title":1},"151":{"body":20,"breadcrumbs":2,"title":1},"152":{"body":24,"breadcrumbs":2,"title":1},"153":{"body":8,"breadcrumbs":2,"title":1},"154":{"body":23,"breadcrumbs":2,"title":1},"155":{"body":28,"breadcrumbs":2,"title":1},"156":{"body":10,"breadcrumbs":4,"title":2},"16":{"body":25,"breadcrumbs":8,"title":2},"17":{"body":15,"breadcrumbs":7,"title":1},"18":{"body":111,"breadcrumbs":8,"title":2},"19":{"body":6,"breadcrumbs":8,"title":2},"2":{"body":5,"breadcrumbs":0,"title":0},"20":{"body":245,"breadcrumbs":9,"title":3},"21":{"body":43,"breadcrumbs":11,"title":5},"22":{"body":63,"breadcrumbs":9,"title":3},"23":{"body":66,"breadcrumbs":8,"title":2},"24":{"body":231,"breadcrumbs":8,"title":2},"25":{"body":42,"breadcrumbs":10,"title":3},"26":{"body":55,"breadcrumbs":10,"title":3},"27":{"body":11,"breadcrumbs":8,"title":3},"28":{"body":371,"breadcrumbs":13,"title":4},"29":{"body":175,"breadcrumbs":9,"title":2},"3":{"body":40,"breadcrumbs":0,"title":0},"30":{"body":112,"breadcrumbs":9,"title":2},"31":{"body":281,"breadcrumbs":11,"title":3},"32":{"body":41,"breadcrumbs":9,"title":2},"33":{"body":10,"breadcrumbs":6,"title":2},"34":{"body":50,"breadcrumbs":10,"title":3},"35":{"body":23,"breadcrumbs":10,"title":3},"36":{"body":10,"breadcrumbs":6,"title":2},"37":{"body":36,"breadcrumbs":16,"title":6},"38":{"body":76,"breadcrumbs":12,"title":2},"39":{"body":101,"breadcrumbs":12,"title":2},"4":{"body":22,"breadcrumbs":0,"title":0},"40":{"body":61,"breadcrumbs":13,"title":3},"41":{"body":127,"breadcrumbs":12,"title":2},"42":{"body":35,"breadcrumbs":15,"title":5},"43":{"body":44,"breadcrumbs":12,"title":4},"44":{"body":58,"breadcrumbs":10,"title":2},"45":{"body":59,"breadcrumbs":16,"title":6},"46":{"body":209,"breadcrumbs":8,"title":2},"47":{"body":38,"breadcrumbs":11,"title":4},"48":{"body":112,"breadcrumbs":6,"title":2},"49":{"body":0,"breadcrumbs":6,"title":2},"5":{"body":23,"breadcrumbs":0,"title":0},"50":{"body":43,"breadcrumbs":6,"title":2},"51":{"body":31,"breadcrumbs":7,"title":3},"52":{"body":13,"breadcrumbs":5,"title":1},"53":{"body":13,"breadcrumbs":6,"title":2},"54":{"body":98,"breadcrumbs":10,"title":3},"55":{"body":95,"breadcrumbs":9,"title":2},"56":{"body":56,"breadcrumbs":10,"title":3},"57":{"body":104,"breadcrumbs":9,"title":2},"58":{"body":88,"breadcrumbs":10,"title":3},"59":{"body":119,"breadcrumbs":9,"title":2},"6":{"body":17,"breadcrumbs":0,"title":0},"60":{"body":117,"breadcrumbs":10,"title":3},"61":{"body":120,"breadcrumbs":10,"title":3},"62":{"body":6,"breadcrumbs":9,"title":2},"63":{"body":75,"breadcrumbs":12,"title":4},"64":{"body":11,"breadcrumbs":6,"title":2},"65":{"body":71,"breadcrumbs":10,"title":3},"66":{"body":95,"breadcrumbs":8,"title":2},"67":{"body":33,"breadcrumbs":10,"title":3},"68":{"body":51,"breadcrumbs":12,"title":4},"69":{"body":145,"breadcrumbs":12,"title":4},"7":{"body":49,"breadcrumbs":0,"title":0},"70":{"body":201,"breadcrumbs":12,"title":4},"71":{"body":340,"breadcrumbs":8,"title":3},"72":{"body":14,"breadcrumbs":4,"title":1},"73":{"body":86,"breadcrumbs":7,"title":2},"74":{"body":4,"breadcrumbs":7,"title":2},"75":{"body":67,"breadcrumbs":8,"title":3},"76":{"body":48,"breadcrumbs":7,"title":2},"77":{"body":15,"breadcrumbs":7,"title":2},"78":{"body":381,"breadcrumbs":8,"title":3},"79":{"body":81,"breadcrumbs":7,"title":2},"8":{"body":22,"breadcrumbs":4,"title":2},"80":{"body":13,"breadcrumbs":4,"title":1},"81":{"body":127,"breadcrumbs":9,"title":3},"82":{"body":93,"breadcrumbs":9,"title":2},"83":{"body":61,"breadcrumbs":7,"title":2},"84":{"body":29,"breadcrumbs":10,"title":4},"85":{"body":55,"breadcrumbs":8,"title":2},"86":{"body":15,"breadcrumbs":8,"title":2},"87":{"body":92,"breadcrumbs":8,"title":2},"88":{"body":32,"breadcrumbs":8,"title":2},"89":{"body":71,"breadcrumbs":8,"title":2},"9":{"body":45,"breadcrumbs":4,"title":2},"90":{"body":20,"breadcrumbs":10,"title":4},"91":{"body":27,"breadcrumbs":12,"title":6},"92":{"body":29,"breadcrumbs":10,"title":4},"93":{"body":33,"breadcrumbs":9,"title":3},"94":{"body":23,"breadcrumbs":9,"title":3},"95":{"body":62,"breadcrumbs":8,"title":2},"96":{"body":14,"breadcrumbs":6,"title":2},"97":{"body":207,"breadcrumbs":12,"title":4},"98":{"body":41,"breadcrumbs":14,"title":5},"99":{"body":26,"breadcrumbs":11,"title":2}},"docs":{"0":{"body":"Rust エディションガイドへようこそ!「エディション」とは、Rust でのコードの書き方 における重大な変化をあなたに伝えるためにあるものです。 このガイドでは、下記の項目について説明します: エディションとは何か 各エディションの内容 コードをあるエディションから別のエディションへ移行する方法 Rust が新しくリリースされるとともに、標準ライブラリは発展します。標準ライブラリ へ追加される機能のうち、重要なものだけがこのガイドに記載されていますが、記載は ないものの、すばらしい機能も沢山追加されています。 標準ライブラリのドキュメンテーション も是非 ご覧ください。","breadcrumbs":"序文 » 序文","id":"0","title":"序文"},"1":{"body":"Rustは6週間ごとにリリースを行います。 これにより、ユーザーは新しい機能を常に手に入れることができます。 これは他の言語よりも速いサイクルですが、アップデートのサイズは小さくなります。 しばらくするとこれらの小変更が積み重なってきますが、いくつかのリリースを振り返って、「おお、バージョン1.10から1.20の間にRustは大きく変わったなぁ」と言うのは難しいかも知れません。 2,3年に一度、Rustの新しい「エディション」を作成します。 各エディションはそれまでRustに加えられた変更をまとめ上げたもので、最新のドキュメントとツールもそれに含まれます。 新しいエディションは通常のリリースプロセスを経てリリースされます。 エディションは様々な人の異なる要求を満たします。 Rustのアクティブなユーザーにとっては、6週間ごとににリリースされた機能変更をわかりやすくまとめたパッケージとなります。 Rustを使っていない人にとっては、大きな変更が施されたことを知らせる役割を果たし、それによってRustを使ってみようと思うようになるかも知れません。 Rustの内部開発者にとっては、プロジェクト全体の長期的なゴールになります。","breadcrumbs":"エディションとは? » エディションとは?","id":"1","title":"エディションとは?"},"10":{"body":"The following is a summary of changes that only apply to code compiled with the 2018 edition compared to the 2015 edition. Path changes : Paths in use declarations work the same as other paths. Paths starting with :: must be followed with an external crate. Paths in pub(in path) visibility modifiers must start with crate, self, or super. Anonymous trait function parameters are not allowed. Trait function parameters may use any irrefutable pattern when the function has a body. Keyword changes: dyn is a strict keyword , in 2015 it is a weak keyword . async and await are strict keywords . try is a reserved keyword . The following lints are now a hard error that you cannot silence: tyvar_behind_raw_pointer","breadcrumbs":"Rust 2018 » 2018-Specific Changes » 2018-Specific Changes","id":"10","title":"2018-Specific Changes"},"100":{"body":"Minimum Rust version: 1.25 cargo new will now default to generating a binary, rather than a library. We try to keep Cargo’s CLI quite stable, but this change is important, and is unlikely to cause breakage. For some background, cargo new accepts two flags: --lib, for creating libraries, and --bin, for creating binaries, or executables. If you don’t pass one of these flags, it used to default to --lib. At the time, we made this decision because each binary (often) depends on many libraries, and so we thought the library case would be more common. However, this is incorrect; each library is depended upon by many binaries. Furthermore, when getting started, what you often want is a program you can run and play around with. It’s not just new Rustaceans though; even very long-time community members have said that they find this default surprising. As such, we’ve changed it, and it now defaults to --bin.","breadcrumbs":"Rust 2018 » Cargo and crates.io » cargo new defaults to a binary project » cargo new defaults to a binary project","id":"100","title":"cargo new defaults to a binary project"},"101":{"body":"Minimum Rust version: 1.1 cargo rustc is a new subcommand for Cargo that allows you to pass arbitrary rustc flags through Cargo. For example, Cargo does not have a way to pass unstable flags built-in. But if we'd like to use print-type-sizes to see what layout information our types have, we can run this: $ cargo rustc -- -Z print-type-sizes And we'll get a bunch of output describing the size of our types.","breadcrumbs":"Rust 2018 » Cargo and crates.io » cargo rustc for passing arbitrary flags to rustc » cargo rustc for passing arbitrary flags to rustc","id":"101","title":"cargo rustc for passing arbitrary flags to rustc"},"102":{"body":"cargo rustc only passes these flags to invocations of your crate, and not to any rustc invocations used to build dependencies. If you'd like to do that, see $RUSTFLAGS.","breadcrumbs":"Rust 2018 » Cargo and crates.io » cargo rustc for passing arbitrary flags to rustc » Note","id":"102","title":"Note"},"103":{"body":"Minimum Rust version: 1.12 Cargo used to have two levels of organization: A package contains one or more crates A crate has one or more modules Cargo now has an additional level: A workspace contains one or more packages This can be useful for larger projects. For example, the futures package is a workspace that contains many related packages: futures futures-util futures-io futures-channel and more. Workspaces allow these packages to be developed individually, but they share a single set of dependencies, and therefore have a single target directory and a single Cargo.lock. For more details about workspaces, please see the Cargo documentation .","breadcrumbs":"Rust 2018 » Cargo and crates.io » Cargo workspaces for multi-package projects » Cargo workspaces for multi-package projects","id":"103","title":"Cargo workspaces for multi-package projects"},"104":{"body":"Minimum Rust version: 1.22 Cargo has an examples feature for showing people how to use your package. By putting individual files inside of the top-level examples directory, you can create multiple examples. But what if your example is too big for a single file? Cargo supports adding sub-directories inside of examples, and looks for a main.rs inside of them to build the example. It looks like this: my-package └──src └── lib.rs // code here └──examples └── simple-example.rs // a single-file example └── complex-example └── helper.rs └── main.rs // a more complex example that also uses `helper` as a submodule","breadcrumbs":"Rust 2018 » Cargo and crates.io » Multi-file examples » Multi-file examples","id":"104","title":"Multi-file examples"},"105":{"body":"Minimum Rust version: 1.21 The [patch] section of your Cargo.toml can be used when you want to override certain parts of your dependency graph. Cargo has a [replace] feature that is similar; while we don't intend to deprecate or remove [replace], you should prefer [patch] in all circumstances. So what’s it look like? Let’s say we have a Cargo.toml that looks like this: [dependencies]\nfoo = \"1.2.3\" In addition, our foo package depends on a bar crate, and we find a bug in bar. To test this out, we’d download the source code for bar, and then update our Cargo.toml: [dependencies]\nfoo = \"1.2.3\" [patch.crates-io]\nbar = { path = '/path/to/bar' } Now, when you cargo build, it will use the local version of bar, rather than the one from crates.io that foo depends on. You can then try out your changes, and fix that bug! For more details, see the documentation for patch .","breadcrumbs":"Rust 2018 » Cargo and crates.io » Replacing dependencies with patch » Replacing dependencies with patch","id":"105","title":"Replacing dependencies with patch"},"106":{"body":"Minimum Rust version: 1.12 Cargo finds its packages in a \"source\". The default source is crates.io . However, you can choose a different source in your .cargo/config: [source.crates-io]\nreplace-with = 'my-awesome-registry' [source.my-awesome-registry]\nregistry = 'https://github.com/my-awesome/registry-index' This configuration means that instead of using crates.io, Cargo will query the my-awesome-registry source instead (configured to a different index here). This alternate source must be the exact same as the crates.io index. Cargo assumes that replacement sources are exact 1:1 mirrors in this respect, and the following support is designed around that assumption. When generating a lock file for crate using a replacement registry, the original registry will be encoded into the lock file. For example in the configuration above, all lock files will still mention crates.io as the registry that packages originated from. This semantically represents how crates.io is the source of truth for all crates, and this is upheld because all replacements have a 1:1 correspondance. Overall, this means that no matter what replacement source you're working with, you can ship your lock file to anyone else and you'll all still have verifiably reproducible builds! This has enabled tools like cargo-vendor and cargo-local-registry , which are often useful for \"offline builds.\" They prepare the list of all Rust dependencies ahead of time, which lets you ship them to a build machine with ease.","breadcrumbs":"Rust 2018 » Cargo and crates.io » Cargo can use a local registry replacement » Cargo can use a local registry replacement","id":"106","title":"Cargo can use a local registry replacement"},"107":{"body":"Minimum Rust version: 1.6 Crates.io will not allow you to upload a package with a wildcard dependency. In other words, these: [dependencies]\nregex = \"*\" A wildcard dependency means that you work with any possible version of your dependency. This is highly unlikely to be true, and would cause unnecessary breakage in the ecosystem. Instead, depend on a version range. For example, ^ is the default, so you could use [dependencies]\nregex = \"1.0.0\" instead. >, <=, and all of the other, non-* ranges work as well.","breadcrumbs":"Rust 2018 » Cargo and crates.io » Crates.io disallows wildcard dependencies » Crates.io disallows wildcard dependencies","id":"107","title":"Crates.io disallows wildcard dependencies"},"108":{"body":"In this chapter of the guide, we discuss a few improvements to documentation. A notable addition here is the second edition of \"the book\" .","breadcrumbs":"Rust 2018 » Documentation » Documentation","id":"108","title":"Documentation"},"109":{"body":"Minimum Rust version: 1.26 for the final version of the second edition Minimum Rust version: 1.31 for the 2018 edition We've distributed a copy of \"The Rust Programming Language,\" affectionately nicknamed \"the book\", with every version of Rust since Rust 1.0. However, because it was written before Rust 1.0, it started showing its age. Many parts of the book are vague, because it was written before the true details were nailed down for the 1.0 release. It didn't do a fantastic job of teaching lifetimes. Starting with Rust 1.18, we shipped drafts of a second edition of the book. The final version was shipped with Rust 1.26. The second edition is a complete re-write from the ground up, using the last two years of knowledge we’ve gained from teaching people Rust. You can purchase a printed version of the second edition from No Starch Press . Now that the print version has shipped, the second edition is frozen. As of 1.31, the book has been completely updated for the 2018 Edition release. It's still pretty close to the second edition, but contains information about newer features since the book's content was frozen. Additionally, instead of publishing separate editions of the book, only the latest version of the book is published online. You’ll find brand-new explanations for a lot of Rust’s core concepts, new projects to build, and all kinds of other good stuff. Please check it out and let us know what you think!","breadcrumbs":"Rust 2018 » Documentation » New editions of the \"the book\" » New editions of the \"the book\"","id":"109","title":"New editions of the \"the book\""},"11":{"body":"If there is a target definition in a Cargo.toml manifest, it no longer automatically disables automatic discovery of other targets. Target paths of the form src/{target_name}.rs are no longer inferred for targets where the path field is not set. cargo install for the current directory is no longer allowed, you must specify cargo install --path . to install the current package.","breadcrumbs":"Rust 2018 » 2018-Specific Changes » Cargo","id":"11","title":"Cargo"},"110":{"body":"Minimum Rust version: various , each book is different. As Rust's documentation has grown, we've gained far more than just \"The book\" and the reference. We now have a collection of various long-form docs, nicknamed \"the Rust Bookshelf.\" Different resources are added at various times, and we're adding new ones as more get written.","breadcrumbs":"Rust 2018 » Documentation » The Rust Bookshelf » The Rust Bookshelf","id":"110","title":"The Rust Bookshelf"},"111":{"body":"Minimum Rust version: 1.21 Historically, Cargo’s docs were hosted on http://doc.crates.io , which doesn’t follow the release train model, even though Cargo itself does. This led to situations where a feature would land in Cargo nightly, the docs would be updated, and then for up to twelve weeks, users would think that it should work, but it wouldn’t yet. https://doc.rust-lang.org/cargo is the new home of Cargo’s docs, and http://doc.crates.io now redirects there.","breadcrumbs":"Rust 2018 » Documentation » The Rust Bookshelf » The Cargo book","id":"111","title":"The Cargo book"},"112":{"body":"Minimum Rust version: 1.21 Rustdoc, our documentation tool, now has a guide at https://doc.rust-lang.org/rustdoc .","breadcrumbs":"Rust 2018 » Documentation » The Rust Bookshelf » The rustdoc book","id":"112","title":"The rustdoc book"},"113":{"body":"Minimum Rust version: 1.25 Rust by Example used to live at https://rustbyexample.com , but now is part of the Bookshelf! It can be found at https://doc.rust-lang.org/rust-by-example/ . RBE lets you learn Rust through short code examples and exercises, as opposed to the lengthy prose of The Book.","breadcrumbs":"Rust 2018 » Documentation » The Rust Bookshelf » Rust By Example","id":"113","title":"Rust By Example"},"114":{"body":"Minimum Rust version: 1.3 We now have a draft book, The Rustonomicon: the Dark Arts of Advanced and Unsafe Rust Programming . From the title, I'm sure you can guess: this book discusses some advanced topics, including unsafe. It's a must-read for anyone who's working at the lowest levels with Rust.","breadcrumbs":"Rust 2018 » Documentation » The Rustonomicon » The Rustonomicon","id":"114","title":"The Rustonomicon"},"115":{"body":"Minimum Rust version: 1.21 The std::os module contains operating system specific functionality. You’ll now see more than just linux, the platform we build the documentation on. We’ve long regretted that the hosted version of the documentation has been Linux-specific; this is a first step towards rectifying that. This is specific to the standard library and not for general use; we hope to improve this further in the future.","breadcrumbs":"Rust 2018 » Documentation » Full documentation for std::os » std::os has documentation for all platforms","id":"115","title":"std::os has documentation for all platforms"},"116":{"body":"In this chapter of the guide, we discuss a few improvements to rustdoc. A notable addition to it was that documentation tests can now compile-fail .","breadcrumbs":"Rust 2018 » rustdoc » rustdoc","id":"116","title":"rustdoc"},"117":{"body":"Minimum Rust version: 1.22 You can now create compile-fail tests in Rustdoc, like this: /// ```compile_fail\n/// let x = 5;\n/// x += 2; // shouldn't compile!\n/// ```\n# fn foo() {} Please note that these kinds of tests can be more fragile than others, as additions to Rust may cause code to compile when it previously would not. Consider the first release with ?, for example: code using ? would fail to compile on Rust 1.21, but compile successfully on Rust 1.22, causing your test suite to start failing.","breadcrumbs":"Rust 2018 » rustdoc » Documentation tests can now compile-fail » Documentation tests can now compile-fail","id":"117","title":"Documentation tests can now compile-fail"},"118":{"body":"Minimum Rust version: 1.25 for support by default Minimum Rust version: 1.23 for support via a flag Rustdoc lets you write documentation comments in Markdown. At Rust 1.0, we were using the hoedown markdown implementation, written in C. Markdown is more of a family of implementations of an idea, and so hoedown had its own dialect, like many parsers. The CommonMark project has attempted to define a more strict version of Markdown, and so now, Rustdoc uses it by default. As of Rust 1.23, we still defaulted to hoedown, but you could enable Commonmark via a flag, --enable-commonmark. Today, we only support CommonMark.","breadcrumbs":"Rust 2018 » rustdoc » Rustdoc uses CommonMark » Rustdoc uses CommonMark","id":"118","title":"Rustdoc uses CommonMark"},"119":{"body":"In this chapter of the guide, we discuss a few improvements to platform and target support. A notable addition to it was that the libcore library now works on stable Rust .","breadcrumbs":"Rust 2018 » Platform and target support » Platform and target support","id":"119","title":"Platform and target support"},"12":{"body":"In this chapter of the guide, we discuss a few changes to the module system. The most notable of these are the path clarity changes .","breadcrumbs":"Rust 2018 » Module system » Module system","id":"12","title":"Module system"},"120":{"body":"Minimum Rust version: 1.6 Rust’s standard library is two-tiered: there’s a small core library, libcore, and the full standard library, libstd, that builds on top of it. libcore is completely platform agnostic, and requires only a handful of external symbols to be defined. Rust’s libstd builds on top of libcore, adding support for things like memory allocation and I/O. Applications using Rust in the embedded space, as well as those writing operating systems, often eschew libstd, using only libcore. As an additional note, while building libraries with libcore is supported today, building full applications is not yet stable. To use libcore, add this flag to your crate root: #![no_std] This will remove the standard library, and bring the core crate into your namespace for use: #![no_std] use core::cell::Cell; You can find libcore's documentation here .","breadcrumbs":"Rust 2018 » Platform and target support » libcore for low-level Rust » libcore for low-level Rust","id":"120","title":"libcore for low-level Rust"},"121":{"body":"Minimum Rust version: 1.14 for emscripten Minimum Rust version: nightly for wasm32-unknown-unknown Rust has gained support for WebAssembly , meaning that you can run Rust code in your browser, client-side. In Rust 1.14, we gained support through emscripten . With it installed, you can write Rust code and have it produce asm.js (the precusor to wasm) and/or WebAssembly. Here's an example of using this support: $ rustup target add wasm32-unknown-emscripten\n$ echo 'fn main() { println!(\"Hello, Emscripten!\"); }' > hello.rs\n$ rustc --target=wasm32-unknown-emscripten hello.rs\n$ node hello.js However, in the meantime, Rust has also grown its own support, independent from Emscripten. This is known as \"the unknown target\", because instead of wasm32-unknown-emscripten, it's wasm32-unknown-unknown. This will be the preferred target to use once it's ready, but for now, it's really only well-supported in nightly.","breadcrumbs":"Rust 2018 » Platform and target support » WebAssembly support » WebAssembly support","id":"121","title":"WebAssembly support"},"122":{"body":"Minimum Rust version: 1.28 Allocators are the way that programs in Rust obtain memory from the system at runtime. Previously, Rust did not allow changing the way memory is obtained, which prevented some use cases. On some platforms, this meant using jemalloc, on others, the system allocator, but there was no way for users to control this key component. With 1.28.0, the #[global_allocator] attribute is now stable, which allows Rust programs to set their allocator to the system allocator, as well as define new allocators by implementing the GlobalAlloc trait. The default allocator for Rust programs on some platforms is jemalloc. The standard library now provides a handle to the system allocator, which can be used to switch to the system allocator when desired, by declaring a static and marking it with the #[global_allocator] attribute. use std::alloc::System; #[global_allocator]\nstatic GLOBAL: System = System; fn main() { let mut v = Vec::new(); // This will allocate memory using the system allocator. v.push(1);\n} However, sometimes you want to define a custom allocator for a given application domain. This is also relatively easy to do by implementing the GlobalAlloc trait. You can read more about how to do this in the documentation .","breadcrumbs":"Rust 2018 » Platform and target support » Global allocators » Global allocators","id":"122","title":"Global allocators"},"123":{"body":"Minimum Rust version: 1.2 At the release of Rust 1.0, we only supported the GNU toolchain on Windows. With the release of Rust 1.2, we introduced initial support for the MSVC toolchain. After that, as support matured, we eventually made it the default choice for Windows users. The difference between the two matters for interacting with C. If you're using a library built with one toolchain or another, you need to match that with the appropriate Rust toolchain. If you're not sure, go with MSVC; it's the default for good reason. To use this feature, simply use Rust on Windows, and the installer will default to it. If you'd prefer to switch to the GNU toolchain, you can install it with Rustup: $ rustup toolchain install stable-x86_64-pc-windows-gnu","breadcrumbs":"Rust 2018 » Platform and target support » MSVC toolchain support » MSVC toolchain support","id":"123","title":"MSVC toolchain support"},"124":{"body":"Minimum Rust version: 1.1 By default, Rust will statically link all Rust code. However, if you use the standard library, it will dynamically link to the system's libc implementation. If you'd like a 100% static binary, the MUSL libc can be used on Linux.","breadcrumbs":"Rust 2018 » Platform and target support » MUSL support for fully static binaries » MUSL support for fully static binaries","id":"124","title":"MUSL support for fully static binaries"},"125":{"body":"To add support for MUSL, you need to choose the correct target. The forge has a full list of targets supported, with a number of ones using musl. If you're not sure what you want, it's probably x86_64-unknown-linux-musl, for 64-bit Linux. We'll be using this target in this guide, but the instructions remain the same for other targets, just change the name wherever we mention the target. To get support for this target, you use rustup: $ rustup target add x86_64-unknown-linux-musl This will install support for the default toolchain; to install for other toolchains, add the --toolchain flag. For example: $ rustup target add x86_64-unknown-linux-musl --toolchain=nightly","breadcrumbs":"Rust 2018 » Platform and target support » MUSL support for fully static binaries » Installing MUSL support","id":"125","title":"Installing MUSL support"},"126":{"body":"To use this new target, pass the --target flag to Cargo: $ cargo build --target x86_64-unknown-linux-musl The binary produced will now be built with MUSL!","breadcrumbs":"Rust 2018 » Platform and target support » MUSL support for fully static binaries » Building with MUSL","id":"126","title":"Building with MUSL"},"127":{"body":"Minimum Rust version: 1.10 for rustc Minimum Rust version: 1.11 for cargo If you're producing a library that you intend to be used from C (or another language through a C FFI), there's no need for Rust to include Rust-specific stuff in the final object code. For libraries like that, you'll want to use the cdylib crate type in your Cargo.toml: [lib]\ncrate-type = [\"cdylib\"] This will produce a smaller binary, with no Rust-specific information inside of it.","breadcrumbs":"Rust 2018 » Platform and target support » cdylib crates for C interoperability » cdylib crates for C interoperability","id":"127","title":"cdylib crates for C interoperability"},"128":{"body":"次のエディションを作るのかどうか、そして作るのであればいつ公開するのかはまだ決めていません。 3年ごとというスケジュールを守るために2021エディションの話がされていますが、公式には決められていません。 次のエディションが決定事項になるまで、このセクションではRust 2018以降に導入された変更点を記録していきます。","breadcrumbs":"次のエディション » 次のエディション","id":"128","title":"次のエディション"},"129":{"body":"次のエディションだけに適用される変更で、承諾されたものはまだありません。","breadcrumbs":"次のエディション » 次のエディションに特有の変更 » 次のエディションに特有の変更","id":"129","title":"次のエディションに特有の変更"},"13":{"body":"Minimum Rust version: 1.30 Rust, like many programming languages, has the concept of \"keywords\". These identifiers mean something to the language, and so you cannot use them in places like variable names, function names, and other places. Raw identifiers let you use keywords where they would not normally be allowed. For example, match is a keyword. If you try to compile this function: fn match(needle: &str, haystack: &str) -> bool { haystack.contains(needle)\n} You'll get this error: error: expected identifier, found keyword `match` --> src/main.rs:4:4 |\n4 | fn match(needle: &str, haystack: &str) -> bool { | ^^^^^ expected identifier, found keyword You can write this with a raw identifier: fn r#match(needle: &str, haystack: &str) -> bool { haystack.contains(needle)\n} fn main() { assert!(r#match(\"foo\", \"foobar\"));\n} Note the r# prefix on both the function name as well as the call.","breadcrumbs":"Rust 2018 » Module system » Raw identifiers » Raw identifiers","id":"13","title":"Raw identifiers"},"130":{"body":"Minimum Rust version: 1.32 dbg!マクロは println!よりも、より良いデバッグ体験を提供します。 fn main() { let x = 5; dbg!(x);\n} このプログラムを実行すると、次の出力が表示されます。 [src/main.rs:4] x = 5 これを見ると、このマクロが呼ばれたソースコードファイル名、行番号とともに、変数名とその値が表示されているのがわかります。 さらに、println!は標準出力に出力するので、標準エラーに出力するためにはeprintln!を使う必要がありますが、dbg!は正しく標準エラーに出力を行います。 dbg!マクロは、より複雑な状況でも動作します。以下の階乗の例を考えてみましょう。 fn factorial(n: u32) -> u32 { if n <= 1 { n } else { n * factorial(n - 1) }\n} これをデバッグしたい場合、eprintln!を使ってこのように書くかも知れません。 fn factorial(n: u32) -> u32 { eprintln!(\"n: {}\", n); if n <= 1 { eprintln!(\"n <= 1\"); n } else { let n = n * factorial(n - 1); eprintln!(\"n: {}\", n); n }\n} ここでは、各反復でnの値と、場合分けのコンテキストを記録したいのですが、 factorial(4)を実行すると以下の出力が得られます。 n: 4\nn: 3\nn: 2\nn: 1\nn <= 1\nn: 2\nn: 6\nn: 24 これは使えなくはないですが、特別に良いということでもありません。 コンテキストをより明確に表示するのに工夫することはできるでしょうが、ここではコードのデバッグをしているのではなく、デバッグ用のコードをより良くする方法を探そうとしています。 dbg!を使ったこのバージョンを考えてみましょう。 fn factorial(n: u32) -> u32 { if dbg!(n <= 1) { dbg!(1) } else { dbg!(n * factorial(n - 1)) }\n} ここでは、表示したい幾つかの式を単純にマクロで囲っています。 これを実行するとこのような出力が得られます。 [src/main.rs:3] n <= 1 = false\n[src/main.rs:3] n <= 1 = false\n[src/main.rs:3] n <= 1 = false\n[src/main.rs:3] n <= 1 = true\n[src/main.rs:4] 1 = 1\n[src/main.rs:5] n * factorial(n - 1) = 2\n[src/main.rs:5] n * factorial(n - 1) = 6\n[src/main.rs:5] n * factorial(n - 1) = 24\n[src/main.rs:11] factorial(4) = 24 eprintln!は常に()を返しますが、dbg!マクロは与えられた式の値を返すので、コードの構成を変える必要がありません。 加えて、表示結果にとても役に立つ情報が含まれています。","breadcrumbs":"次のエディション » dbg! マクロ » dbg! マクロ","id":"130","title":"dbg! マクロ"},"131":{"body":"Minimum Rust version: 1.32 遠い遠い昔、RustはErlang風のとても大きなランタイムを持っていました。 その際、性能面での改善が得られていたので、システムの標準のアロケータではなく、jemallocを使うという選択をしました。 それ以来、我々はランタイムの機能を徐々に削ぎ落とし、最終的にはほとんど何もなくなりましたが、jemallocは残されていました。 カスタムのアロケータを選ぶ方法がなく、jemallocを必要としている人に影響を与えることなくそれを削除することが出来なかったからです。 さらに、jemallocは特定のプラットフォームでのみデフォルトなので、それが常にデフォルトだと言うのはややUnix偏重主義でしょう。 特にWindows上のMSVCターゲットは、長い間、システムのアロケータで出荷されています。 jemallocは通常とても良い性能を出しますが、常にというわけではありません。 加えて、jemallocを使うとRustのすべてのバイナリーが300kb大きくなります。 そして、過去にはjemallocにまつわる問題が多くありました。 また、システム言語であるRustが、システムが提供するアロケータを使わないのは少し変だとも考えられていました。 これらの理由により、Rust 1.28でグローバルアロケーターを選択できるようになってから、我々はシステムの提供するアロケータをデフォルトにして、jemallocはクレートを通じて使えるようにする計画を立て始めました。 Rust 1.32でこれが完成し、それぞれのプラットフォームでシステムが提供するアロケータがデフォルトで使われるようになりました。 もしjemallocを使い続けたいのであれば、jemallocatorクレートを使ってください。 あなたのCargo.tomlに以下のように書き、 jemallocator = \"0.1.8\" あなたのクレートのルートで以下のように書きます。 #[global_allocator]\nstatic ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc; これだけです。あなたがjemallocを必要としていなければ強制されませんし、もし必要であれば数行追加するだけです。","breadcrumbs":"次のエディション » デフォルトでjemallocを使わない » デフォルトでjemallocを使わない","id":"131","title":"デフォルトでjemallocを使わない"},"132":{"body":"Minimum Rust version: 1.32 Rust 2018でモジュールシステムに幾つかの改善が加えられましたが、Rust 1.32.0で最終的な微調整の変更を一つ入れています。 「統一的なパス」と呼ばれるこの機能により、以前は不正だったインポートパス文を、インポート以外のパスと同じ様に解釈できるようになりました。例えば、以下の例を考えます。 enum Color { Red, Green, Blue,\n} use Color::*; 以前は、use文はsuper、selfあるいはcrateで始まらなければならなかったので、このコードはコンパイル出来ませんでした。 今ではコンパイラーが統一的なパスをサポートするようになり、このコードはあなたの想像通りの動作をします。 つまり、use文の上で宣言されているColor列挙型のヴァリアントをインポートします。","breadcrumbs":"次のエディション » 統一的なパス » 統一的なパス","id":"132","title":"統一的なパス"},"133":{"body":"Minimum Rust version: 1.32 リテラル(literal)マッチャがマクロに付け加えられました。 macro_rules! m { ($lt:literal) => {};\n} fn main() { m!(\"some string literal\");\n} literalは、文字列リテラル、数値リテラル、文字リテラルなど、どんなタイプのリテラルにもマッチします。","breadcrumbs":"次のエディション » リテラルマクロマッチャ » リテラルマクロマッチャ","id":"133","title":"リテラルマクロマッチャ"},"134":{"body":"Minimum Rust version: 1.32 macro_rules マクロ内で、?演算子を以下のように使えます。 macro_rules! bar { ($(a)?) => {}\n} 既に利用可能な *演算子が「0回以上」、+演算子が「1回以上」の繰り返しパターンを表すのと同様に、?演算子は0もしくは1回のパターンを表します。","breadcrumbs":"次のエディション » マクロ内の?演算子 » マクロ内の?演算子","id":"134","title":"マクロ内の?演算子"},"135":{"body":"Minimum Rust version: 1.31 で最初に導入されました。 そしてその後のリリースで何度か拡張されています。詳細は以下を確認してください。 const fnによりコードを「constコンテキスト」で実行することができます(訳注:つまり、コンパイル時に評価されます)。例を示します。 const fn five() -> i32 { 5\n} const FIVE: i32 = five(); const fnでは任意のコードを実行することは出来ません。 というのは、簡単に言うと型システムを壊してしまうことになるからです。 詳細はここでは述べませんが、const fnでは最小限の言語サブセットのみを使えるところからスタートし、徐々に出来ることを増やしていく、というのが基本的な考え方です。 したがって、導入当初のRust 1.31では const fn関数を作ることは出来ましたが、実際に出来ることはほとんどありませんでした。 これが、const fnをRust 2018のセクションに含めなかった理由なのですが、実際、Rust 2018エディションのリリース時にはあまり使い物になりませんでした。 もしあなたがこのドキュメントを最初から最後まで読んだとすると、以前のバージョンで制約とされていた部分がその後のバージョンで緩和されていることがわかるでしょう。 さらに付け加えると、const fnで利用できる表記方が増えるに従って、標準ライブラリの機能がconst化されていっています。 ここではその変更の全てを述べることはしませんが、時とともに const化される部分が増えていくことは知っておいても良いでしょう。","breadcrumbs":"次のエディション » const fn » const fn","id":"135","title":"const fn"},"136":{"body":"Minimum Rust version: 1.31 整数リテラルに対して算術演算をすることができます。 const fn foo() -> i32 { 5 + 6\n}","breadcrumbs":"次のエディション » const fn » 整数の算術演算および比較演算","id":"136","title":"整数の算術演算および比較演算"},"137":{"body":"Minimum Rust version: 1.31 ブーリアン演算のほとんどが使えます。 例外は&&と||で、これらは短絡評価を行うので使えなくなっています。 const fn mask(val: u8) -> u8 { let mask = 0x0f; mask & val\n}","breadcrumbs":"次のエディション » const fn » 多くのブーリアン演算","id":"137","title":"多くのブーリアン演算"},"138":{"body":"Minimum Rust version: 1.31 配列、構造体、列挙型、タプルを生成することができます。 struct Point { x: i32, y: i32,\n} enum Error { Incorrect, FileNotFound,\n} const fn foo() { let array = [1, 2, 3]; let point = Point { x: 5, y: 10, }; let error = Error::FileNotFound; let tuple = (1, 2, 3);\n}","breadcrumbs":"次のエディション » const fn » 配列、構造体、列挙型、タプルの生成","id":"138","title":"配列、構造体、列挙型、タプルの生成"},"139":{"body":"Minimum Rust version: 1.31 const fnからconst fnを呼び出すことができます。 const fn foo() -> i32 { 5\n} const fn bar() -> i32 { foo()\n}","breadcrumbs":"次のエディション » const fn » 他のconst関数の呼び出し","id":"139","title":"他のconst関数の呼び出し"},"14":{"body":"This feature is useful for a few reasons, but the primary motivation was inter-edition situations. For example, try is not a keyword in the 2015 edition, but is in the 2018 edition. So if you have a library that is written in Rust 2015 and has a try function, to call it in Rust 2018, you'll need to use the raw identifier.","breadcrumbs":"Rust 2018 » Module system » Raw identifiers » Motivation","id":"14","title":"Motivation"},"140":{"body":"Minimum Rust version: 1.31 配列やスライスに添え字アクセスできます。 const fn foo() -> i32 { let array = [1, 2, 3]; array[1]\n}","breadcrumbs":"次のエディション » const fn » 配列やスライスの添字式","id":"140","title":"配列やスライスの添字式"},"141":{"body":"Minimum Rust version: 1.31 構造体やタプルの構成要素にアクセスできます。 struct Point { x: i32, y: i32,\n} const fn foo() { let point = Point { x: 5, y: 10, }; let tuple = (1, 2, 3); point.x; tuple.0;\n}","breadcrumbs":"次のエディション » const fn » 構造体やタプルのフィールドアクセス","id":"141","title":"構造体やタプルのフィールドアクセス"},"142":{"body":"Minimum Rust version: 1.31 定数の値を読み出せます。 const FOO: i32 = 5; const fn foo() -> i32 { FOO\n} 読み出せるのは const指定された定数 のみ で、static指定された変数は読み出せません。","breadcrumbs":"次のエディション » const fn » 定数読み出し","id":"142","title":"定数読み出し"},"143":{"body":"Minimum Rust version: 1.31 参照を作ったり、参照外しをすることができます。 const fn foo(r: &i32) { *r; &5;\n}","breadcrumbs":"次のエディション » const fn » 参照の & と *","id":"143","title":"参照の & と *"},"144":{"body":"Minimum Rust version: 1.31 キャストができます。 例外は生ポインタから整数へのキャスト。 const fn foo() { let x: usize = 5; x as i32;\n}","breadcrumbs":"次のエディション » const fn » キャスト。ただし生ポインタから整数へのキャストは除く","id":"144","title":"キャスト。ただし生ポインタから整数へのキャストは除く"},"145":{"body":"Minimum Rust version: 1.33 論駁不可能なパターンで値を分配することができます。 const fn foo((x, y): (u8, u8)) { // ...\n} ここで、fooはタプルの値をxとyに分配します。 if letでも同様に論駁不可能なパターンを使います。","breadcrumbs":"次のエディション » const fn » 論駁不可能な分配パターン","id":"145","title":"論駁不可能な分配パターン"},"146":{"body":"Minimum Rust version: 1.33 ミュータブルとイミュータブルの双方のlet束縛を使うことができます。 const fn foo() { let x = 5; let mut y = 10;\n}","breadcrumbs":"次のエディション » const fn » let 束縛","id":"146","title":"let 束縛"},"147":{"body":"Minimum Rust version: 1.33 代入と代入演算子を使うことができます。 const fn foo() { let mut x = 5; x = 10;\n}","breadcrumbs":"次のエディション » const fn » 代入","id":"147","title":"代入"},"148":{"body":"Minimum Rust version: 1.33 const fnの中でunsafe fnを呼び出すことができます。 const unsafe fn foo() -> i32 { 5 } const fn bar() -> i32 { unsafe { foo() }\n}","breadcrumbs":"次のエディション » const fn » unsafe fn の呼び出し","id":"148","title":"unsafe fn の呼び出し"},"149":{"body":"Minimum Rust version: 1.33 Rust 1.33で新しい概念が導入され、二つの型で実装されました。 Pin
ポインタ的なモノを包むラッパで、その値が動かないように「ピン留め」します。 それにより、そのポインタにより参照されている値がムーブされるのを防ぎます。 Unpin ピン留めされていても安全にムーブできる型です。 ほとんどのユーザはピン留めを直接扱うことは無いと思うので、これ以上の説明は控えます。 より詳細を知りたければ std::pinのドキュメンテーション を見てください。 ピン留めはasync / awaitの前提条件になっているということは知っておくと良いでしょう。 非同期のライブラリを作成する人はピン留めを学んでおく必要があるかも知れませんが、そのライブラリを使うだけの人はこの機能に直接触れることは無いでしょう。","breadcrumbs":"次のエディション » ピン留め » ピン留め","id":"149","title":"ピン留め"},"15":{"body":"The new confirmed keywords in edition 2018 are:","breadcrumbs":"Rust 2018 » Module system » Raw identifiers » New keywords","id":"15","title":"New keywords"},"150":{"body":"Minimum Rust version: 1.35 かつて、この本の20章2節には以下のコードがありました。 trait FnBox { fn call_box(self: Box);\n} impl FnBox for F { fn call_box(self: Box) { (*self)() }\n} type Job = Box; ここで、FnBoxという新しいトレイトを定義し、全てのFnOnceクロージャに対して実装をしています。 そして全ての実装がクロージャを呼び出します。 このハックは、Box がFnOnceを実装していなかったので必要でした。 そしてこれは以下の3つのパターンで必要でした。 Box と Fn Box と FnMut Box と FnOnce しかし、Rust 1.35からこれらのトレイトがこれらの型に実装されたので、FnBoxトリックは必要なくなりました。 この本の最新版ではJob型はこのようになります。 type Job = Box; これ以外のコードは不要です。","breadcrumbs":"次のエディション » FnBoxは不要に » FnBoxは不要に","id":"150","title":"FnBoxは不要に"},"151":{"body":"Minimum Rust version: 1.34 で最初に導入されました。 自分のコードを他の人とシェアしたいけど、何らかの理由でcrates.ioには公開したくないということがあるかも知れません。 例えば、あなたの会社ではオープンソースではないRustのコードを書いていて、でもその内部パッケージを使いたいという場合です。 Cargoは.cargo/configに設定を入れることで別のレジストリをサポートします。 [registries]\nmy-registry = { index = \"https://my-intranet:7878/git/index\" } そして、別のレジストリのパッケージに依存したい時は、Cargo.tomlにそれを追加します。 [dependencies]\nother-crate = { version = \"1.0\", registry = \"my-registry\" } 詳しく知りたい場合は、 Cargoブックのレジストリのセクション を確認してみてください。","breadcrumbs":"次のエディション » Cargoレジストリが選択できるように » Cargoレジストリが選択できるように","id":"151","title":"Cargoレジストリが選択できるように"},"152":{"body":"Minimum Rust version: 1.34 で最初に導入されました。 TryFrom と TryInto トレイトは From と Into トレイトと似ていますが、Result型を返すという点で異なっています。 つまり、これらの呼び出しは失敗することがあります。 例えば、整数型のfrom_be_bytesや関連するメソッドは配列を引数に取りますが、そのデータはスライスから読み込まれるということがよくあります。スライスから配列への変換は手動でやると退屈なものです。 このトレイトを使えば、try_into()でインラインでできます。 use std::convert::TryInto;\n# fn main() -> Result<(), Box> {\n# let slice = &[1, 2, 3, 4][..];\nlet num = u32::from_be_bytes(slice.try_into()?);\n# Ok(())\n# }","breadcrumbs":"次のエディション » TryFromとTryInto » TryFromとTryInto","id":"152","title":"TryFromとTryInto"},"153":{"body":"Minimum Rust version: 1.36 で最初に導入されました。 Rust 1.36.0で長い間、待たれていた Future トレイトが安定化されました。 TODO: 次のエディションに近づいたら、このページはおそらく大きな非同期セクションの中に織り込まれるでしょう。","breadcrumbs":"次のエディション » Futureトレイト » Futureトレイト","id":"153","title":"Futureトレイト"},"154":{"body":"Minimum Rust version: 1.36 で最初に導入されました。 1.36.0以前は、 標準ライブラリはstd、core、proc_macroクレートで構成されていました。 coreクレートはIteratorやCopyのような主要機能を提供し、何も前提条件がなかったので#![no_std]環境で使うことができました。 一方、stdクレートはBoxのような型やOSの機能を提供していましたが、その代わりにグローバルアロケータやその他のOSの機能を必要としていました。 Rust 1.36.0,から、stdの中で、Vecのようなグローバルアロケータに依存している部分はallocクレートで提供されるようになりました。 stdクレートはこれらを再公開します。 allocを使う#![no_std]の バイナリ はまだnightly版のRustを必要としますが、#![no_std] ライブラリ クレートは安定版のRustでallocクレートを使うことができます。 一方で、#![no_std]ではない通常のバイナリはそのようなライブラリクレートに依存することが可能です。 これにより、allocを使う#![no_std]バイナリのサポートが安定化する前に、#![no_std]互換のライブラリエコシステムの開発が進むことを期待しています。 もしあなたが幾つかのアロケーションプリミティブのみに依存するライブラリのメンテナだったら、以下をあなたのlib.rsの先頭に入れて、#[no_std]互換にすることを検討してみてください。 #![no_std] extern crate alloc; use alloc::vec::Vec;","breadcrumbs":"次のエディション » allocクレート » allocクレート","id":"154","title":"allocクレート"},"155":{"body":"Minimum Rust version: 1.36 で最初に導入されました。 以前のリリースのRustでは、 mem::uninitialized 関数により、何もせずに型Tの値を初期化したように見せかけて、Rustの初期化チェックをバイパスすることができました。 この関数の主要な使い道の一つは配列の遅延アロケートでした。 しかし、Rustコンパイラは値が正しく初期化されることを想定しているので、 mem::uninitialized 関数は、本質的に正しく使うことができない、とても危険な操作です。 例えば、mem::uninitialized::()の呼び出しは 即時の__未定義動作__ を引き起こします。 なぜならば、Rustの視点からは、初期化されていないビットはboolの取り得る二つの値である、0 (false) でも 1 (true) でもないからです。 この状況を是正するために、Rust 1.36.0で MaybeUninit 型が安定化されました。 Rustコンパイラは、 MaybeUninit はTが正しく初期化されると仮定できないことを理解しています。 したがって、段階的な初期化をより安全に行うことができ、maybe_t: MaybeUninitが初期化されたTを含んでいることが確実になったら、 .assume_init()を呼び出します。 MaybeUninit はより安全な代替手段であるため、Rust 1.39から、 mem::uninitialized 関数は非推奨となります。","breadcrumbs":"次のエディション » MaybeUninit » MaybeUninit","id":"155","title":"MaybeUninit"},"156":{"body":"Minimum Rust version: 1.37 で最初に導入されました。 長年、 別のクレート として提供されてきたのちに、cargo vendorコマンドがCargoに直接統合されました。 このコマンドはあなたのプロジェクトの依存関係を全て取ってきて、vendor/ディレクトリの下に展開します。 そして、ビルド時にベンダーコードを使うために必要なコンフィグレーションの断片表示します。 cargo vendorが既に使われている例が幾つかあります。 rustcコンパイラは全ての依存ライブラリをリリースアーカイブに入れるのに使い、モノリポのプロジェクトは依存コードをソースコード管理ツールにコミットするのに使っています。","breadcrumbs":"次のエディション » cargo vendor » cargo vendor","id":"156","title":"cargo vendor"},"16":{"body":"Here, async is reserved for use in async fn as well as in async || closures and async { .. } blocks. Meanwhile, await is reserved to keep our options open with respect to await!(expr) syntax. See RFC 2394 for more details.","breadcrumbs":"Rust 2018 » Module system » Raw identifiers » async and await","id":"16","title":"async and await"},"17":{"body":"The do catch { .. } blocks have been renamed to try { .. } and to support that, the keyword try is reserved in edition 2018. See RFC 2388 for more details.","breadcrumbs":"Rust 2018 » Module system » Raw identifiers » try","id":"17","title":"try"},"18":{"body":"Minimum Rust version: 1.31 The module system is often one of the hardest things for people new to Rust. Everyone has their own things that take time to master, of course, but there's a root cause for why it's so confusing to many: while there are simple and consistent rules defining the module system, their consequences can feel inconsistent, counterintuitive and mysterious. As such, the 2018 edition of Rust introduces a few new module system features, but they end up simplifying the module system, to make it more clear as to what is going on. Here's a brief summary: extern crate is no longer needed in 99% of circumstances. The crate keyword refers to the current crate. Paths may start with a crate name, even within submodules. Paths starting with :: must reference an external crate. A foo.rs and foo/ subdirectory may coexist; mod.rs is no longer needed when placing submodules in a subdirectory. Paths in use declarations work the same as other paths. These may seem like arbitrary new rules when put this way, but the mental model is now significantly simplified overall. Read on for more details!","breadcrumbs":"Rust 2018 » Module system » Path clarity » Path clarity","id":"18","title":"Path clarity"},"19":{"body":"Let's talk about each new feature in turn.","breadcrumbs":"Rust 2018 » Module system » Path clarity » More details","id":"19","title":"More details"},"2":{"body":"新しいエディションがコンパイラで利用可能になった際に、その利点を最大限に活かすためには、クレートは明示的にオプトインする必要があります。 このオプトインはエディションに非互換の変更を加えるために必要で、例えば、既存のコードで使われている識別子と競合する新たなキーワードを導入したり、警告だったものをエラーにする、などの変更を加えることができるようになります。 Rustのコンパイラはこれまでの全てのエディションをサポートしていて、複数のクレートが異なるエディションを使用していても一つにリンクできます。 エディションの変更はコンパイラが最初にコードを構文解析する際の動作のみに影響します。 従って、例ばあなたがRust 2015を使っていて、依存するクレートが Rust 2018を使っていても全く問題なく動作します。 その逆の場合も同様です。 念の為はっきりさせておきますが、ほとんどの機能は全てのエディションで利用可能です。 どのエディションを利用していても、新たな安定板リリースが出た際には改善を見ることができます。 時折、例えば新たなキーワードが導入されたりその他の理由で、あるエディション以降でしか利用できない機能追加があります。 そのような機能を利用したい時にエディションのアップデートを検討するのが良いでしょう。","breadcrumbs":"エディションとは? » 互換性","id":"2","title":"互換性"},"20":{"body":"This one is quite straightforward: you no longer need to write extern crate to import a crate into your project. Before: // Rust 2015 extern crate futures; mod submodule { use futures::Future;\n} After: // Rust 2018 mod submodule { use futures::Future;\n} Now, to add a new crate to your project, you can add it to your Cargo.toml, and then there is no step two. If you're not using Cargo, you already had to pass --extern flags to give rustc the location of external crates, so you'd just keep doing what you were doing there as well. One small note here: cargo fix will not currently automate this change. We may have it do this for you in the future. An exception There's one exception to this rule, and that's the \"sysroot\" crates. These are the crates distributed with Rust itself. Usually these are only needed in very specialized situations. Starting in 1.41, rustc accepts the --extern=CRATE_NAME flag which automatically adds the given crate name in a way similar to extern crate. Build tools may use this to inject sysroot crates into the crate's prelude. Cargo does not have a general way to express this, though it uses it for proc_macro crates. Some examples of needing to explicitly import sysroot crates are: std : Usually this is not neccesary, because std is automatically imported unless the crate is marked with #![no_std] . core : Usually this is not necessary, because core is automatically imported, unless the crate is marked with #![no_core] . For example, some of the internal crates used by the standard library itself need this. proc_macro : This is automatically imported by Cargo if it is a proc-macro crate starting in 1.42. extern crate proc_macro; would be needed if you want to support older releases, or if using another build tool that does not pass the appropriate --extern flags to rustc. alloc : Items in the alloc crate are usually accessed via re-exports in the std crate. If you are working with a no_std crate that supports allocation, then you may need to explicitly import alloc. test : This is only available on the nightly channel , and is usually only used for the unstable benchmark support. Macros One other use for extern crate was to import macros; that's no longer needed. Check the macro section for more. Renaming crates If you've been using as to rename your crate like this: extern crate futures as f; use f::Future; then removing the extern crate line on its own won't work. You'll need to do this: use futures as f; use self::f::Future; This change will need to happen in any module that uses f.","breadcrumbs":"Rust 2018 » Module system » Path clarity » No more extern crate","id":"20","title":"No more extern crate"},"21":{"body":"In use declarations and in other code, you can refer to the root of the current crate with the crate:: prefix. For instance, crate::foo::bar will always refer to the name bar inside the module foo, from anywhere else in the same crate. The prefix :: previously referred to either the crate root or an external crate; it now unambiguously refers to an external crate. For instance, ::foo::bar always refers to the name bar inside the external crate foo.","breadcrumbs":"Rust 2018 » Module system » Path clarity » The crate keyword refers to the current crate","id":"21","title":"The crate keyword refers to the current crate"},"22":{"body":"Previously, using an external crate in a module without a use import required a leading :: on the path. // Rust 2015 extern crate chrono; fn foo() { // this works in the crate root let x = chrono::Utc::now();\n} mod submodule { fn function() { // but in a submodule it requires a leading :: if not imported with `use` let x = ::chrono::Utc::now(); }\n} Now, extern crate names are in scope in the entire crate, including submodules. // Rust 2018 fn foo() { // this works in the crate root let x = chrono::Utc::now();\n} mod submodule { fn function() { // crates may be referenced directly, even in submodules let x = chrono::Utc::now(); }\n}","breadcrumbs":"Rust 2018 » Module system » Path clarity » Extern crate paths","id":"22","title":"Extern crate paths"},"23":{"body":"In Rust 2015, if you have a submodule: // This `mod` declaration looks for the `foo` module in\n// `foo.rs` or `foo/mod.rs`.\nmod foo; It can live in foo.rs or foo/mod.rs. If it has submodules of its own, it must be foo/mod.rs. So a bar submodule of foo would live at foo/bar.rs. In Rust 2018 the restriction that a module with submodules must be named mod.rs is lifted. foo.rs can just be foo.rs, and the submodule is still foo/bar.rs. This eliminates the special name, and if you have a bunch of files open in your editor, you can clearly see their names, instead of having a bunch of tabs named mod.rs. Rust 2015 Rust 2018 .\n├── lib.rs\n└── foo/ ├── mod.rs └── bar.rs .\n├── lib.rs\n├── foo.rs\n└── foo/ └── bar.rs","breadcrumbs":"Rust 2018 » Module system » Path clarity » No more mod.rs","id":"23","title":"No more mod.rs"},"24":{"body":"Minimum Rust version: 1.32 Rust 2018 simplifies and unifies path handling compared to Rust 2015. In Rust 2015, paths work differently in use declarations than they do elsewhere. In particular, paths in use declarations would always start from the crate root, while paths in other code implicitly started from the current scope. Those differences didn't have any effect in the top-level module, which meant that everything would seem straightforward until working on a project large enough to have submodules. In Rust 2018, paths in use declarations and in other code work the same way, both in the top-level module and in any submodule. You can use a relative path from the current scope, a path starting from an external crate name, or a path starting with crate, super, or self. Code that looked like this: // Rust 2015 extern crate futures; use futures::Future; mod foo { pub struct Bar;\n} use foo::Bar; fn my_poll() -> futures::Poll { ... } enum SomeEnum { V1(usize), V2(String),\n} fn func() { let five = std::sync::Arc::new(5); use SomeEnum::*; match ... { V1(i) => { ... } V2(s) => { ... } }\n} will look exactly the same in Rust 2018, except that you can delete the extern crate line: // Rust 2018 use futures::Future; mod foo { pub struct Bar;\n} use foo::Bar; fn my_poll() -> futures::Poll { ... } enum SomeEnum { V1(usize), V2(String),\n} fn func() { let five = std::sync::Arc::new(5); use SomeEnum::*; match ... { V1(i) => { ... } V2(s) => { ... } }\n} The same code will also work completely unmodified in a submodule: // Rust 2018 mod submodule { use futures::Future; mod foo { pub struct Bar; } use foo::Bar; fn my_poll() -> futures::Poll { ... } enum SomeEnum { V1(usize), V2(String), } fn func() { let five = std::sync::Arc::new(5); use SomeEnum::*; match ... { V1(i) => { ... } V2(s) => { ... } } }\n} This makes it easy to move code around in a project, and avoids introducing additional complexity to multi-module projects. If a path is ambiguous, such as if you have an external crate and a local module or item with the same name, you'll get an error, and you'll need to either rename one of the conflicting names or explicitly disambiguate the path. To explicitly disambiguate a path, use ::name for an external crate name, or self::name for a local module or item.","breadcrumbs":"Rust 2018 » Module system » Path clarity » use paths","id":"24","title":"use paths"},"25":{"body":"Minimum Rust version: 1.18 You can use the pub keyword to make something a part of a module's public interface. But in addition, there are some new forms: pub(crate) struct Foo; pub(in a::b::c) struct Bar; The first form makes the Foo struct public to your entire crate, but not externally. The second form is similar, but makes Bar public for one other module, a::b::c in this case.","breadcrumbs":"Rust 2018 » Module system » More visibility modifiers » More visibility modifiers","id":"25","title":"More visibility modifiers"},"26":{"body":"Minimum Rust version: 1.25 A new way to write use statements has been added to Rust: nested import groups. If you’ve ever written a set of imports like this: use std::fs::File;\nuse std::io::Read;\nuse std::path::{Path, PathBuf}; You can now write this: # mod foo {\n// on one line\nuse std::{fs::File, io::Read, path::{Path, PathBuf}};\n# } # mod bar {\n// with some more breathing room\nuse std::{ fs::File, io::Read, path::{ Path, PathBuf }\n};\n# } This can reduce some repetition, and make things a bit more clear.","breadcrumbs":"Rust 2018 » Module system » Nested imports with use » Nested imports with use","id":"26","title":"Nested imports with use"},"27":{"body":"In this chapter of the guide, we discuss a few improvements to error handling in Rust. The most notable of these is the introduction of the ? operator .","breadcrumbs":"Rust 2018 » Error handling and panics » Error handling and Panics","id":"27","title":"Error handling and Panics"},"28":{"body":"Minimum Rust version: 1.13 for Result Minimum Rust version: 1.22 for Option Rust has gained a new operator, ?, that makes error handling more pleasant by reducing the visual noise involved. It does this by solving one simple problem. To illustrate, imagine we had some code to read some data from a file: # use std::{io::{self, prelude::*}, fs::File};\nfn read_username_from_file() -> Result { let f = File::open(\"username.txt\"); let mut f = match f { Ok(file) => file, Err(e) => return Err(e), }; let mut s = String::new(); match f.read_to_string(&mut s) { Ok(_) => Ok(s), Err(e) => Err(e), }\n} Note: this code could be made simpler with a single call to std::fs::read_to_string , but we're writing it all out manually here to have an example with multiple errors. This code has two paths that can fail, opening the file and reading the data from it. If either of these fail to work, we'd like to return an error from read_username_from_file. Doing so involves matching on the result of the I/O operations. In simple cases like this though, where we are only propagating errors up the call stack, the matching is just boilerplate - seeing it written out, in the same pattern every time, doesn't provide the reader with a great deal of useful information. With ?, the above code looks like this: # use std::{io::{self, prelude::*}, fs::File};\nfn read_username_from_file() -> Result { let mut f = File::open(\"username.txt\")?; let mut s = String::new(); f.read_to_string(&mut s)?; Ok(s)\n} The ? is shorthand for the entire match statements we wrote earlier. In other words, ? applies to a Result value, and if it was an Ok, it unwraps it and gives the inner value. If it was an Err, it returns from the function you're currently in. Visually, it is much more straightforward. Instead of an entire match statement, now we are just using the single \"?\" character to indicate that here we are handling errors in the standard way, by passing them up the call stack. Seasoned Rustaceans may recognize that this is the same as the try! macro that's been available since Rust 1.0. And indeed, they are the same. Previously, read_username_from_file could have been implemented like this: # use std::{io::{self, prelude::*}, fs::File};\nfn read_username_from_file() -> Result { let mut f = try!(File::open(\"username.txt\")); let mut s = String::new(); try!(f.read_to_string(&mut s)); Ok(s)\n} So why extend the language when we already have a macro? There are multiple reasons. First, try! has proved to be extremely useful, and is used often in idiomatic Rust. It is used so often that we think it's worth having a sweet syntax. This sort of evolution is one of the great advantages of a powerful macro system: speculative extensions to the language syntax can be prototyped and iterated on without modifying the language itself, and in return, macros that turn out to be especially useful can indicate missing language features. This evolution, from try! to ? is a great example. One of the reasons try! needs a sweeter syntax is that it is quite unattractive when multiple invocations of try! are used in succession. Consider: try!(try!(try!(foo()).bar()).baz()) as opposed to foo()?.bar()?.baz()? The first is quite difficult to scan visually, and each layer of error handling prefixes the expression with an additional call to try!. This brings undue attention to the trivial error propagation, obscuring the main code path, in this example the calls to foo, bar and baz. This sort of method chaining with error handling occurs in situations like the builder pattern. Finally, the dedicated syntax will make it easier in the future to produce nicer error messages tailored specifically to ?, whereas it is difficult to produce nice errors for macro-expanded code generally. You can use ? with Results, but also with Option. In that case, ? will return a value for Some(T) and return None for None. One current restriction is that you cannot use ? for both in the same function, as the return type needs to match the type you use ? on. In the future, this restriction will be lifted.","breadcrumbs":"Rust 2018 » Error handling and panics » The ? operator for easier error handling » The ? operator for easier error handling","id":"28","title":"The ? operator for easier error handling"},"29":{"body":"Minimum Rust version: 1.26 Rust's error handling revolves around returning Result and using ? to propagate errors. For those who write many small programs and, hopefully, many tests, one common paper cut has been mixing entry points such as main and #[test]s with error handling. As an example, you might have tried to write: use std::fs::File; fn main() { let f = File::open(\"bar.txt\")?;\n} Since ? works by propagating the Result with an early return to the enclosing function, the snippet above does not work, and results today in the following error: error[E0277]: the `?` operator can only be used in a function that returns `Result` or `Option` (or another type that implements `std::ops::Try`) --> src/main.rs:5:13 |\n5 | let f = File::open(\"bar.txt\")?; | ^^^^^^^^^^^^^^^^^^^^^^ cannot use the `?` operator in a function that returns `()` | = help: the trait `std::ops::Try` is not implemented for `()` = note: required by `std::ops::Try::from_error` To solve this problem in Rust 2015, you might have written something like: // Rust 2015 # use std::process;\n# use std::error::Error; fn run() -> Result<(), Box> { // real logic.. Ok(())\n} fn main() { if let Err(e) = run() { println!(\"Application error: {}\", e); process::exit(1); }\n} However, in this case, the run function has all the interesting logic and main is just boilerplate. The problem is even worse for #[test]s, since there tend to be a lot more of them. In Rust 2018 you can instead let your #[test]s and main functions return a Result: // Rust 2018 use std::fs::File; fn main() -> Result<(), std::io::Error> { let f = File::open(\"bar.txt\")?; Ok(())\n} In this case, if say the file doesn't exist and there is an Err(err) somewhere, then main will exit with an error code (not 0) and print out a Debug representation of err. Note that this will always print out the Debug representation. If you would like to, for example, print out the Display representation of err, you will still have to do what you would in Rust 2015.","breadcrumbs":"Rust 2018 » Error handling and panics » ? in main and tests » ? in main and tests","id":"29","title":"? in main and tests"},"3":{"body":"Cargoは新たなプロジェクトを作成する際に自動で最新のエディションをコンフィギュレーションに追加します。 > cargo +nightly new foo Created binary (application) `foo` project\n> cat .\\foo\\Cargo.toml\n[package]\nname = \"foo\"\nversion = \"0.1.0\"\nauthors = [\"your name \"]\nedition = \"2018\" [dependencies] この edition = \"2018\" によってあなたのパッケージが Rust 2018 を利用するように設定されます。 これ以外は必要ありません。 もし、他の古いエディションを使いたい場合は、その設定の値を変更できます。例えば、 [package]\nname = \"foo\"\nversion = \"0.1.0\"\nauthors = [\"your name \"]\nedition = \"2015\" [dependencies] とすると、あなたのパッケージは Rust 2015 でビルドされます。","breadcrumbs":"エディションとは? » 新しいプロジェクトを作成する » 新しいプロジェクトを作成する","id":"3","title":"新しいプロジェクトを作成する"},"30":{"body":"Getting -> Result<..> to work in the context of main and #[test]s is not magic. It is all backed up by a Termination trait which all valid return types of main and testing functions must implement. The trait is defined as: pub trait Termination { fn report(self) -> i32;\n} When setting up the entry point for your application, the compiler will use this trait and call .report() on the Result of the main function you have written. Two simplified example implementations of this trait for Result and () are: # #![feature(process_exitcode_placeholder, termination_trait_lib)]\n# use std::process::ExitCode;\n# use std::fmt;\n#\n# pub trait Termination { fn report(self) -> i32; } impl Termination for () { fn report(self) -> i32 { # use std::process::Termination; ExitCode::SUCCESS.report() }\n} impl Termination for Result<(), E> { fn report(self) -> i32 { match self { Ok(()) => ().report(), Err(err) => { eprintln!(\"Error: {:?}\", err); # use std::process::Termination; ExitCode::FAILURE.report() } } }\n} As you can see in the case of (), a success code is simply returned. In the case of Result, the success case delegates to the implementation for () but prints out an error message and a failure exit code on Err(..). To learn more about the finer details, consult either the tracking issue or the RFC .","breadcrumbs":"Rust 2018 » Error handling and panics » ? in main and tests » More details","id":"30","title":"More details"},"31":{"body":"Minimum Rust version: 1.9 There is a std::panic module, which includes methods for halting the unwinding process started by a panic: use std::panic; let result = panic::catch_unwind(|| { println!(\"hello!\");\n});\nassert!(result.is_ok()); let result = panic::catch_unwind(|| { panic!(\"oh no!\");\n});\nassert!(result.is_err()); In general, Rust distinguishes between two ways that an operation can fail: Due to an expected problem , like a file not being found. Due to an unexpected problem , like an index being out of bounds for an array. Expected problems usually arise from conditions that are outside of your control; robust code should be prepared for anything its environment might throw at it. In Rust, expected problems are handled via the Result type , which allows a function to return information about the problem to its caller, which can then handle the error in a fine-grained way. Unexpected problems are bugs : they arise due to a contract or assertion being violated. Since they are unexpected, it doesn't make sense to handle them in a fine-grained way. Instead, Rust employs a \"fail fast\" approach by panicking , which by default unwinds the stack (running destructors but no other code) of the thread which discovered the error. Other threads continue running, but will discover the panic any time they try to communicate with the panicked thread (whether through channels or shared memory). Panics thus abort execution up to some \"isolation boundary\", with code on the other side of the boundary still able to run, and perhaps to \"recover\" from the panic in some very coarse-grained way. A server, for example, does not necessarily need to go down just because of an assertion failure in one of its threads. It's also worth noting that programs may choose to abort instead of unwind, and so catching panics may not work. If your code relies on catch_unwind, you should add this to your Cargo.toml: [profile.dev]\npanic = \"unwind\" [profile.release]\npanic = \"unwind\" If any of your users choose to abort, they'll get a compile-time failure. The catch_unwind API offers a way to introduce new isolation boundaries within a thread . There are a couple of key motivating examples: Embedding Rust in other languages Abstractions that manage threads Test frameworks, because tests may panic and you don't want that to kill the test runner For the first case, unwinding across a language boundary is undefined behavior, and often leads to segfaults in practice. Allowing panics to be caught means that you can safely expose Rust code via a C API, and translate unwinding into an error on the C side. For the second case, consider a threadpool library. If a thread in the pool panics, you generally don't want to kill the thread itself, but rather catch the panic and communicate it to the client of the pool. The catch_unwind API is paired with resume_unwind, which can then be used to restart the panicking process on the client of the pool, where it belongs. In both cases, you're introducing a new isolation boundary within a thread, and then translating the panic into some other form of error elsewhere.","breadcrumbs":"Rust 2018 » Error handling and panics » Controlling panics with std::panic » Controlling panics with std::panic","id":"31","title":"Controlling panics with std::panic"},"32":{"body":"Minimum Rust version: 1.10 By default, Rust programs will unwind the stack when a panic! happens. If you'd prefer an immediate abort instead, you can configure this in Cargo.toml: [profile.dev]\npanic = \"abort\" [profile.release]\npanic = \"abort\" Why might you choose to do this? By removing support for unwinding, you'll get smaller binaries. You will lose the ability to catch panics. Which choice is right for you depends on exactly what you're doing.","breadcrumbs":"Rust 2018 » Error handling and panics » Aborting on panic » Aborting on panic","id":"32","title":"Aborting on panic"},"33":{"body":"In this chapter of the guide, we discuss a few improvements to control flow. The most notable of these will be async and await .","breadcrumbs":"Rust 2018 » Control flow » Control flow","id":"33","title":"Control flow"},"34":{"body":"Minimum Rust version: 1.19 loops can now break with a value: // old code\nlet x; loop { x = 7; break;\n} // new code\nlet x = loop { break 7; }; Rust has traditionally positioned itself as an “expression oriented language”, that is, most things are expressions that evaluate to a value, rather than statements. loop stuck out as strange in this way, as it was previously a statement. For now, this only applies to loop, and not things like while or for. See the rationale for this decision in RFC issue #1767 .","breadcrumbs":"Rust 2018 » Control flow » Loops can break with a value » loops can break with a value","id":"34","title":"loops can break with a value"},"35":{"body":"Minimum Rust version: nightly The initial release of Rust 2018 won't ship with async/await support, but we have reserved the keywords so that a future release will contain them. We'll update this page when it's closer to shipping!","breadcrumbs":"Rust 2018 » Control flow » async/await for easier concurrency » async/await for easier concurrency","id":"35","title":"async/await for easier concurrency"},"36":{"body":"In this chapter of the guide, we discuss a few improvements to the trait system. The most notable of these is impl Trait .","breadcrumbs":"Rust 2018 » Trait system » Trait system","id":"36","title":"Trait system"},"37":{"body":"Minimum Rust version: 1.26 impl Trait is the new way to specify unnamed but concrete types that implement a specific trait. There are two places you can put it: argument position, and return position. trait Trait {} // argument position\nfn foo(arg: impl Trait) {\n} // return position\nfn foo() -> impl Trait {\n}","breadcrumbs":"Rust 2018 » Trait system » impl Trait for returning complex types with ease » impl Trait for returning complex types with ease","id":"37","title":"impl Trait for returning complex types with ease"},"38":{"body":"In argument position, this feature is quite simple. These two forms are almost the same: trait Trait {} fn foo(arg: T) {\n} fn foo(arg: impl Trait) {\n} That is, it's a slightly shorter syntax for a generic type parameter. It means, \"arg is an argument that takes any type that implements the Trait trait.\" However, there's also an important technical difference between T: Trait and impl Trait here. When you write the former, you can specify the type of T at the call site with turbo-fish syntax as with foo::(1). In the case of impl Trait, if it is used anywhere in the function definition, then you can't use turbo-fish at all. Therefore, you should be mindful that changing both from and to impl Trait can constitute a breaking change for the users of your code.","breadcrumbs":"Rust 2018 » Trait system » impl Trait for returning complex types with ease » Argument Position","id":"38","title":"Argument Position"},"39":{"body":"In return position, this feature is more interesting. It means \"I am returning some type that implements the Trait trait, but I'm not going to tell you exactly what the type is.\" Before impl Trait, you could do this with trait objects: trait Trait {} impl Trait for i32 {} fn returns_a_trait_object() -> Box { Box::new(5)\n} However, this has some overhead: the Box means that there's a heap allocation here, and this will use dynamic dispatch. See the dyn Trait section for an explanation of this syntax. But we only ever return one possible thing here, the Box. This means that we're paying for dynamic dispatch, even though we don't use it! With impl Trait, the code above could be written like this: trait Trait {} impl Trait for i32 {} fn returns_a_trait_object() -> impl Trait { 5\n} Here, we have no Box, no trait object, and no dynamic dispatch. But we still can obscure the i32 return type. With i32, this isn't super useful. But there's one major place in Rust where this is much more useful: closures.","breadcrumbs":"Rust 2018 » Trait system » impl Trait for returning complex types with ease » Return Position","id":"39","title":"Return Position"},"4":{"body":"新たなエディションによってRustの書き方が変わるかも知れません。 新しい構文や新たなライブラリ機能の追加、そして時に機能の削除もあります。 例えば、try、async、awaitは Rust 2018ではキーワードですが、Rust 2015ではそうではありません。 もしあなたが Rust 2015のプロジェクトを持っていて、それを Rust 2018に移行したい場合には、やらなければならないことが幾つかあります。 我々は、新しいエディションへの移行をできるだけスムーズに行えるようにしたいと考えています。 もし、Rust 2018へアップグレードするのが大変な場合は、我々はそれをバグとみなします。 もし移行時に問題があった場合には バグ登録 してください。 訳注:Rustの日本語コミュニティもあります。 Slackを使用しており こちら から登録できます。 ここに例を挙げます。src/lib.rsに以下のコードがあるクレートがあるとします。 trait Foo { fn foo(&self, Box);\n} このコードは Boxという無名パラメータを使用しています。 これは Rust 2018ではサポートされておらず 、コンパイルに失敗します。 このコードを更新してみましょう。","breadcrumbs":"エディションとは? » 既存のプロジェクトのエディションを移行する » 既存のプロジェクトのエディションを移行する","id":"4","title":"既存のプロジェクトのエディションを移行する"},"40":{"body":"If you need to catch up on closures, check out their chapter in the book . In Rust, closures have a unique, un-writable type. They do implement the Fn family of traits, however. This means that previously, the only way to return a closure from a function was to use a trait object: fn returns_closure() -> Box i32> { Box::new(|x| x + 1)\n} You couldn't write the type of the closure, only use the Fn trait. That means that the trait object is necessary. However, with impl Trait: fn returns_closure() -> impl Fn(i32) -> i32 { |x| x + 1\n} We can now return closures by value, just like any other type!","breadcrumbs":"Rust 2018 » Trait system » impl Trait for returning complex types with ease » impl Trait and closures","id":"40","title":"impl Trait and closures"},"41":{"body":"The above is all you need to know to get going with impl Trait, but for some more nitty-gritty details: type parameters and impl Trait work slightly differently when they're in argument position versus return position. Consider this function: fn foo(x: T) { When you call it, you set the type, T. \"you\" being the caller here. This signature says \"I accept any type that implements Trait.\" (\"any type\" == universal in the jargon) This version: fn foo() -> T { is similar, but also different. You, the caller, provide the type you want, T, and then the function returns it. You can see this in Rust today with things like parse or collect: let x: i32 = \"5\".parse()?;\nlet x: u64 = \"5\".parse()?; Here, .parse has this signature: pub fn parse(&self) -> Result::Err> where F: FromStr, Same general idea, though with a result type and FromStr has an associated type... anyway, you can see how F is in the return position here. So you have the ability to choose. With impl Trait, you're saying \"hey, some type exists that implements this trait, but I'm not gonna tell you what it is.\" So now, the caller can't choose, and the function itself gets to choose. If we tried to define parse with Result becomes Box &Trait and &mut Trait become &dyn Trait and &mut dyn Trait And so on. In code: trait Trait {} impl Trait for i32 {} // old\nfn function1() -> Box {\n# unimplemented!()\n} // new\nfn function2() -> Box {\n# unimplemented!()\n} That's it!","breadcrumbs":"Rust 2018 » Trait system » dyn Trait for trait objects » dyn Trait for trait objects","id":"43","title":"dyn Trait for trait objects"},"44":{"body":"Using just the trait name for trait objects turned out to be a bad decision. The current syntax is often ambiguous and confusing, even to veterans, and favors a feature that is not more frequently used than its alternatives, is sometimes slower, and often cannot be used at all when its alternatives can. Furthermore, with impl Trait arriving, \"impl Trait vs dyn Trait\" is much more symmetric, and therefore a bit nicer, than \"impl Trait vs Trait\". impl Trait is explained here . In the new edition, you should therefore prefer dyn Trait to just Trait where you need a trait object.","breadcrumbs":"Rust 2018 » Trait system » dyn Trait for trait objects » More details","id":"44","title":"More details"},"45":{"body":"Minimum Rust version: 1.2 In Rust 1.0, only certain, special types could be used to create trait objects . With Rust 1.2, that restriction was lifted, and more types became able to do this. For example, Rc, one of Rust's reference-counted types: use std::rc::Rc; trait Foo {} impl Foo for i32 { } fn main() { let obj: Rc = Rc::new(5);\n} This code would not work with Rust 1.0, but now works. If you haven't seen the dyn syntax before, see the section on it . For versions that do not support it, replace Rc with Rc.","breadcrumbs":"Rust 2018 » Trait system » More container types support trait objects » More container types support trait objects","id":"45","title":"More container types support trait objects"},"46":{"body":"Minimum Rust version: 1.20 You can define traits, structs, and enums that have “associated functions”: struct Struct; impl Struct { fn foo() { println!(\"foo is an associated function of Struct\"); }\n} fn main() { Struct::foo();\n} These are called “associated functions” because they are functions that are associated with the type, that is, they’re attached to the type itself, and not any particular instance. Rust 1.20 adds the ability to define “associated constants” as well: struct Struct; impl Struct { const ID: u32 = 0;\n} fn main() { println!(\"the ID of Struct is: {}\", Struct::ID);\n} That is, the constant ID is associated with Struct. Like functions, associated constants work with traits and enums as well. Traits have an extra ability with associated constants that gives them some extra power. With a trait, you can use an associated constant in the same way you’d use an associated type: by declaring it, but not giving it a value. The implementor of the trait then declares its value upon implementation: trait Trait { const ID: u32;\n} struct Struct; impl Trait for Struct { const ID: u32 = 5;\n} fn main() { println!(\"{}\", Struct::ID);\n} Before this feature, if you wanted to make a trait that represented floating point numbers, you’d have to write this: trait Float { fn nan() -> Self; fn infinity() -> Self; // ...\n} This is slightly unwieldy, but more importantly, because they’re functions, they cannot be used in constant expressions, even though they only return a constant. Because of this, a design for Float would also have to include constants as well: mod f32 { const NAN: f32 = 0.0f32 / 0.0f32; const INFINITY: f32 = 1.0f32 / 0.0f32; impl Float for f32 { fn nan() -> Self { f32::NAN } fn infinity() -> Self { f32::INFINITY } }\n} Associated constants let you do this in a much cleaner way. This trait definition: trait Float { const NAN: Self; const INFINITY: Self; // ...\n} Leads to this implementation: mod f32 { impl Float for f32 { const NAN: f32 = 0.0f32 / 0.0f32; const INFINITY: f32 = 1.0f32 / 0.0f32; }\n} much cleaner, and more versatile.","breadcrumbs":"Rust 2018 » Trait system » Associated constants » Associated constants","id":"46","title":"Associated constants"},"47":{"body":"Minimum Rust version: 1.31 In accordance with RFC #1685 , parameters in trait method declarations are no longer allowed to be anonymous. For example, in the 2015 edition, this was allowed: trait Foo { fn foo(&self, u8);\n} In the 2018 edition, all parameters must be given an argument name (even if it's just _): trait Foo { fn foo(&self, baz: u8);\n}","breadcrumbs":"Rust 2018 » Trait system » No more anonymous parameters » No more anonymous trait parameters","id":"47","title":"No more anonymous trait parameters"},"48":{"body":"Minimum Rust version: 1.26 Have you ever tried to pattern match on the contents and structure of a slice? Rust 2018 will let you do just that. For example, say we want to accept a list of names and respond to that with a greeting. With slice patterns, we can do that easy as pie with: fn main() { greet(&[]); // output: Bummer, there's no one here :( greet(&[\"Alan\"]); // output: Hey, there Alan! You seem to be alone. greet(&[\"Joan\", \"Hugh\"]); // output: Hello, Joan and Hugh. Nice to see you are exactly 2! greet(&[\"John\", \"Peter\", \"Stewart\"]); // output: Hey everyone, we seem to be 3 here today.\n} fn greet(people: &[&str]) { match people { [] => println!(\"Bummer, there's no one here :(\"), [only_one] => println!(\"Hey, there {}! You seem to be alone.\", only_one), [first, second] => println!( \"Hello, {} and {}. Nice to see you are exactly 2!\", first, second ), _ => println!(\"Hey everyone, we seem to be {} here today.\", people.len()), }\n} Now, you don't have to check the length first. We can also match on arrays like so: let arr = [1, 2, 3]; assert_eq!(\"ends with 3\", match arr { [_, _, 3] => \"ends with 3\", [a, b, c] => \"ends with something else\",\n});","breadcrumbs":"Rust 2018 » Slice patterns » Slice patterns","id":"48","title":"Slice patterns"},"49":{"body":"","breadcrumbs":"Rust 2018 » Slice patterns » More details","id":"49","title":"More details"},"5":{"body":"あなたのコードは互換性のない機能を使っているかも知れないし、使っていないかも知れません。 Rust 2018への移行を助けるためにCargoに新しいサブコマンドを追加しました。 まず初めにそれを起動してみましょう。 > cargo fix --edition これはあなたのコードをチェックして、自動的に移行の問題を修正してくれます。 もう一度 src/lib.rsを見てみましょう。 trait Foo { fn foo(&self, _: Box);\n} トレイトオブジェクトのためのパラメータ名が追加された形でコードが書き換えられています。 この場合は、パラメータ名がなかったので、使用されていないパラメータの慣習に従って _ を付加しています。 Cargo fixは常に自動的にコードを修正してくれるわけではありません。 もし、cargo fixがコードを修正できない時にはコンソールに修正できなかったという警告を表示します。 その場合は手動でコードを修正してください。 助けが必要な時は、このガイドの対応するセクションを参照してください。 問題がある場合は、 ユーザーフォーラム で助けを求めてください。 そして警告が出なくなるまで cargo fix --edition を繰り返し実行してください。 おめでとうございます! あなたのコードはRust 2015とRust 2018の双方で正しいコードになりました。","breadcrumbs":"エディションとは? » 既存のプロジェクトのエディションを移行する » あなたのコードを新しいエディションでコンパイルできるようにする","id":"5","title":"あなたのコードを新しいエディションでコンパイルできるようにする"},"50":{"body":"In the first example, note in particular the _ => ... pattern. Since we are matching on a slice, it could be of any length, so we need a \"catch all pattern\" to handle it. If we forgot the _ => ... or identifier => ... pattern, we would instead get an error saying: error[E0004]: non-exhaustive patterns: `&[_, _, _]` not covered If we added a case for a slice of size 3 we would instead get: error[E0004]: non-exhaustive patterns: `&[_, _, _, _]` not covered and so on...","breadcrumbs":"Rust 2018 » Slice patterns » Exhaustive patterns","id":"50","title":"Exhaustive patterns"},"51":{"body":"In the second example above, since arrays in Rust are of known lengths, we have to match on exactly three elements. If we try to match on 2 or 4 elements,we get the errors: error[E0527]: pattern requires 2 elements but array has 3 and error[E0527]: pattern requires 4 elements but array has 3","breadcrumbs":"Rust 2018 » Slice patterns » Arrays and exact lengths","id":"51","title":"Arrays and exact lengths"},"52":{"body":"When it comes to slice patterns, more advanced forms are planned but have not been stabilized yet. To learn more, follow the tracking issue .","breadcrumbs":"Rust 2018 » Slice patterns » In the pipeline","id":"52","title":"In the pipeline"},"53":{"body":"In this chapter of the guide, we discuss a few improvements to ownership and lifetimes. One of the most notable of these is default match binding modes .","breadcrumbs":"Rust 2018 » Ownership and lifetimes » Ownership and lifetimes","id":"53","title":"Ownership and lifetimes"},"54":{"body":"Minimum Rust version: 1.31 for 2018 edition Minimum Rust version: 1.36 for 2015 edition The borrow checker has been enhanced to accept more code, via a mechanism called \"non-lexical lifetimes.\" Consider this example: fn main() { let mut x = 5; let y = &x; let z = &mut x;\n} In older Rust, this is a compile-time error: error[E0502]: cannot borrow `x` as mutable because it is also borrowed as immutable --> src/main.rs:5:18 |\n4 | let y = &x; | - immutable borrow occurs here\n5 | let z = &mut x; | ^ mutable borrow occurs here\n6 | } | - immutable borrow ends here This is because lifetimes follow \"lexical scope\"; that is, the borrow from y is considered to be held until y goes out of scope at the end of main, even though we never use y again. This code is fine, but the borrow checker could not handle it. Today, this code will compile just fine.","breadcrumbs":"Rust 2018 » Ownership and lifetimes » Non-lexical lifetimes » Non-lexical lifetimes","id":"54","title":"Non-lexical lifetimes"},"55":{"body":"What if we did use y, like this? fn main() { let mut x = 5; let y = &x; let z = &mut x; println!(\"y: {}\", y);\n} Here's the error: error[E0502]: cannot borrow `x` as mutable because it is also borrowed as immutable --> src/main.rs:5:18 |\n4 | let y = &x; | - immutable borrow occurs here\n5 | let z = &mut x; | ^ mutable borrow occurs here\n...\n8 | } | - immutable borrow ends here With non-lexical lifetimes, the error changes slightly: error[E0502]: cannot borrow `x` as mutable because it is also borrowed as immutable --> src/main.rs:5:13 |\n4 | let y = &x; | -- immutable borrow occurs here\n5 | let z = &mut x; | ^^^^^^ mutable borrow occurs here\n6 |\n7 | println!(\"y: {}\", y); | - borrow later used here Instead of pointing to where y goes out of scope, it shows you where the conflicting borrow occurs. This makes these sorts of errors far easier to debug.","breadcrumbs":"Rust 2018 » Ownership and lifetimes » Non-lexical lifetimes » Better errors","id":"55","title":"Better errors"},"56":{"body":"Minimum Rust version: 1.26 Have you ever had a borrowed Option and tried to match on it? You probably wrote this: let s: &Option = &Some(\"hello\".to_string()); match s { Some(s) => println!(\"s is: {}\", s), _ => (),\n}; In Rust 2015, this would fail to compile, and you would have to write the following instead: // Rust 2015 let s: &Option = &Some(\"hello\".to_string()); match s { &Some(ref s) => println!(\"s is: {}\", s), _ => (),\n}; Rust 2018, by contrast, will infer the &s and refs, and your original code will Just Work. This affects not just match, but patterns everywhere, such as in let statements, closure arguments, and for loops.","breadcrumbs":"Rust 2018 » Ownership and lifetimes » Default match bindings » Default match bindings","id":"56","title":"Default match bindings"},"57":{"body":"The mental model of patterns has shifted a bit with this change, to bring it into line with other aspects of the language. For example, when writing a for loop, you can iterate over borrowed contents of a collection by borrowing the collection itself: let my_vec: Vec = vec![0, 1, 2]; for x in &my_vec { ... } The idea is that an &T can be understood as a borrowed view of T , and so when you iterate, match, or otherwise destructure a &T you get a borrowed view of its internals as well. More formally, patterns have a \"binding mode,\" which is either by value (x), by reference (ref x), or by mutable reference (ref mut x). In Rust 2015, match always started in by-value mode, and required you to explicitly write ref or ref mut in patterns to switch to a borrowing mode. In Rust 2018, the type of the value being matched informs the binding mode, so that if you match against an &Option with a Some variant, you are put into ref mode automatically, giving you a borrowed view of the internal data. Similarly, &mut Option would give you a ref mut view.","breadcrumbs":"Rust 2018 » Ownership and lifetimes » Default match bindings » More details","id":"57","title":"More details"},"58":{"body":"Minimum Rust version: 1.31 Rust 2018 allows you to explicitly mark where a lifetime is elided, for types where this elision might otherwise be unclear. To do this, you can use the special lifetime '_ much like you can explicitly mark that a type is inferred with the syntax let x: _ = ..;. Let's say, for whatever reason, that we have a simple wrapper around &'a str: struct StrWrap<'a>(&'a str); In Rust 2015, you might have written: # use std::fmt;\n# struct StrWrap<'a>(&'a str);\n// Rust 2015 fn make_wrapper(string: &str) -> StrWrap { StrWrap(string)\n} impl<'a> fmt::Debug for StrWrap<'a> { fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { fmt.write_str(self.0) }\n} In Rust 2018, you can instead write: # use std::fmt;\n# struct StrWrap<'a>(&'a str);\n// Rust 2018 fn make_wrapper(string: &str) -> StrWrap<'_> { StrWrap(string)\n} impl fmt::Debug for StrWrap<'_> { fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { fmt.write_str(self.0) }\n}","breadcrumbs":"Rust 2018 » Ownership and lifetimes » '_, the anonymous lifetime » '_, the anonymous lifetime","id":"58","title":"'_, the anonymous lifetime"},"59":{"body":"In the Rust 2015 snippet above, we've used -> StrWrap. However, unless you take a look at the definition of StrWrap, it is not clear that the returned value is actually borrowing something. Therefore, starting with Rust 2018, it is deprecated to leave off the lifetime parameters for non-reference-types (types other than & and &mut). Instead, where you previously wrote -> StrWrap, you should now write -> StrWrap<'_>, making clear that borrowing is occurring. What exactly does '_ mean? It depends on the context! In output contexts, as in the return type of make_wrapper, it refers to a single lifetime for all \"output\" locations. In input contexts, a fresh lifetime is generated for each \"input location\". More concretely, to understand input contexts, consider the following example: // Rust 2015 struct Foo<'a, 'b: 'a> { field: &'a &'b str,\n} impl<'a, 'b: 'a> Foo<'a, 'b> { // some methods...\n} We can rewrite this as: # struct Foo<'a, 'b: 'a> {\n# field: &'a &'b str,\n# } // Rust 2018 impl Foo<'_, '_> { // some methods...\n} This is the same, because for each '_, a fresh lifetime is generated. Finally, the relationship 'a: 'b which the struct requires must be upheld. For more details, see the tracking issue on In-band lifetime bindings .","breadcrumbs":"Rust 2018 » Ownership and lifetimes » '_, the anonymous lifetime » More details","id":"59","title":"More details"},"6":{"body":"新しいエディションの新機能を使うには明示的にオプトインする必要があります。 コミットする準備ができたら、Cargo.tomlに新しいエディションのキーバリューペアを追加してください。 例えば以下のような形になります。 [package]\nname = \"foo\"\nversion = \"0.1.0\"\nauthors = [\"Your Name \"]\nedition = \"2018\" もし editionキーがなければCargoはデフォルトで Rust 2015をエディションとして使います。 しかし上記の例では、2018を明示的に指定しているのでコードは Rust 2018でビルドされます。","breadcrumbs":"エディションとは? » 既存のプロジェクトのエディションを移行する » 新機能を使うために新たなエディションを有効化する","id":"6","title":"新機能を使うために新たなエディションを有効化する"},"60":{"body":"Minimum Rust version: 1.31 When writing impl blocks, you can now elide lifetime annotations in some situations. Consider a trait like MyIterator: trait MyIterator { type Item; fn next(&mut self) -> Option;\n} In Rust 2015, if we wanted to implement this iterator for mutable references to Iterators, we'd need to write this: impl<'a, I: MyIterator> MyIterator for &'a mut I { type Item = I::Item; fn next(&mut self) -> Option { (*self).next() }\n} Note all of the 'a annotations. In Rust 2018, we can write this: impl MyIterator for &mut I { type Item = I::Item; fn next(&mut self) -> Option { (*self).next() }\n} Similarly, lifetime annotations can appear due to a struct that contains references: struct SetOnDrop<'a, T> { borrow: &'a mut T, value: Option,\n} In Rust 2015, to implement Drop on this struct, we'd write: impl<'a, T> Drop for SetOnDrop<'a, T> { fn drop(&mut self) { if let Some(x) = self.value.take() { *self.borrow = x; } }\n} But in Rust 2018, we can combine elision with the anonymous lifetime and write this instead. impl Drop for SetOnDrop<'_, T> { fn drop(&mut self) { if let Some(x) = self.value.take() { *self.borrow = x; } }\n}","breadcrumbs":"Rust 2018 » Ownership and lifetimes » Lifetime elision in impl » Lifetime elision in impl","id":"60","title":"Lifetime elision in impl"},"61":{"body":"Minimum Rust version: 1.31 An annotation in the form of T: 'a, where T is either a type or another lifetime, is called an \"outlives\" requirement. Note that \"outlives\" also implies 'a: 'a. One way in which edition 2018 helps you out in maintaining flow when writing programs is by removing the need to explicitly annotate these T: 'a outlives requirements in struct definitions. Instead, the requirements will be inferred from the fields present in the definitions. Consider the following struct definitions in Rust 2015: // Rust 2015 struct Ref<'a, T: 'a> { field: &'a T\n} // or written with a `where` clause: struct WhereRef<'a, T> where T: 'a { data: &'a T\n} // with nested references: struct RefRef<'a, 'b: 'a, T: 'b> { field: &'a &'b T,\n} // using an associated type: struct ItemRef<'a, T: Iterator>\nwhere T::Item: 'a\n{ field: &'a T::Item\n} In Rust 2018, since the requirements are inferred, you can instead write: // Rust 2018 struct Ref<'a, T> { field: &'a T\n} struct WhereRef<'a, T> { data: &'a T\n} struct RefRef<'a, 'b, T> { field: &'a &'b T,\n} struct ItemRef<'a, T: Iterator> { field: &'a T::Item\n} If you prefer to be more explicit in some cases, that is still possible.","breadcrumbs":"Rust 2018 » Ownership and lifetimes » T: 'a inference in structs » T: 'a inference in structs","id":"61","title":"T: 'a inference in structs"},"62":{"body":"For more details, see the tracking issue and the RFC .","breadcrumbs":"Rust 2018 » Ownership and lifetimes » T: 'a inference in structs » More details","id":"62","title":"More details"},"63":{"body":"Minimum Rust version: 1.17 In older Rust, you had to explicitly write the 'static lifetime in any static or const that needed a lifetime: # mod foo {\nconst NAME: &'static str = \"Ferris\";\n# }\n# mod bar {\nstatic NAME: &'static str = \"Ferris\";\n# } But 'static is the only possible lifetime there. So Rust now assumes the 'static lifetime, and you don't have to write it out: # mod foo {\nconst NAME: &str = \"Ferris\";\n# }\n# mod bar {\nstatic NAME: &str = \"Ferris\";\n# } In some situations, this can remove a lot of boilerplate: # mod foo {\n// old\nconst NAMES: &'static [&'static str; 2] = &[\"Ferris\", \"Bors\"];\n# }\n# mod bar { // new\nconst NAMES: &[&str; 2] = &[\"Ferris\", \"Bors\"];\n# }","breadcrumbs":"Rust 2018 » Ownership and lifetimes » Simpler lifetimes in static and const » Simpler lifetimes in static and const","id":"63","title":"Simpler lifetimes in static and const"},"64":{"body":"In this chapter of the guide, we discuss a few improvements to data types. One of these are field-init-shorthand .","breadcrumbs":"Rust 2018 » Data types » Data types","id":"64","title":"Data types"},"65":{"body":"Minimum Rust version: 1.17 In older Rust, when initializing a struct, you must always give the full set of key: value pairs for its fields: struct Point { x: i32, y: i32,\n} let a = 5;\nlet b = 6; let p = Point { x: a, y: b,\n}; However, often these variables would have the same names as the fields. So you'd end up with code that looks like this: let p = Point { x: x, y: y,\n}; Now, if the variable is of the same name, you don't have to write out both, just write out the key: struct Point { x: i32, y: i32,\n} let x = 5;\nlet y = 6; // new\nlet p = Point { x, y,\n};","breadcrumbs":"Rust 2018 » Data types » Field init shorthand » Field init shorthand","id":"65","title":"Field init shorthand"},"66":{"body":"Minimum Rust version: 1.26 Since well before Rust 1.0, you’ve been able to create exclusive ranges with .. like this: for i in 1..3 { println!(\"i: {}\", i);\n} This will print i: 1 and then i: 2. Today, you can now create an inclusive range, like this: for i in 1..=3 { println!(\"i: {}\", i);\n} This will print i: 1 and then i: 2 like before, but also i: 3; the three is included in the range. Inclusive ranges are especially useful if you want to iterate over every possible value in a range. For example, this is a surprising Rust program: fn takes_u8(x: u8) { // ...\n} fn main() { for i in 0..256 { println!(\"i: {}\", i); takes_u8(i); }\n} What does this program do? The answer: it fails to compile. The error we get when compiling has a hint: error: literal out of range for u8 --> src/main.rs:6:17 |\n6 | for i in 0..256 { | ^^^ | = note: #[deny(overflowing_literals)] on by default That’s right, since i is a u8, this overflows, and the compiler produces an error. We can do this with inclusive ranges, however: fn takes_u8(x: u8) { // ...\n} fn main() { for i in 0..=255 { println!(\"i: {}\", i); takes_u8(i); }\n} This will produce those 256 lines of output you might have been expecting.","breadcrumbs":"Rust 2018 » Data types » ..= for inclusive ranges » ..= for inclusive ranges","id":"66","title":"..= for inclusive ranges"},"67":{"body":"Minimum Rust version: 1.26 A very simple feature: Rust now has 128 bit integers! let x: i128 = 0;\nlet y: u128 = 0; These are twice the size of u64, and so can hold more values. More specifically, u128: 0 - 340,282,366,920,938,463,463,374,607,431,768,211,455 i128: −170,141,183,460,469,231,731,687,303,715,884,105,728 - 170,141,183,460,469,231,731,687,303,715,884,105,727 Whew!","breadcrumbs":"Rust 2018 » Data types » 128 bit integers » 128 bit integers","id":"67","title":"128 bit integers"},"68":{"body":"Minimum Rust version: 1.8 The various “operator equals” operators, such as += and -=, are implementable via various traits. For example, to implement += on a type of your own: use std::ops::AddAssign; #[derive(Debug)]\nstruct Count { value: i32,\n} impl AddAssign for Count { fn add_assign(&mut self, other: Count) { self.value += other.value; }\n} fn main() { let mut c1 = Count { value: 1 }; let c2 = Count { value: 5 }; c1 += c2; println!(\"{:?}\", c1);\n} This will print Count { value: 6 }.","breadcrumbs":"Rust 2018 » Data types » \"Operator-equals\" are now implementable » \"Operator-equals\" are now implementable","id":"68","title":"\"Operator-equals\" are now implementable"},"69":{"body":"Minimum Rust version: 1.19 Rust now supports unions: union MyUnion { f1: u32, f2: f32,\n} Unions are kind of like enums, but they are “untagged”. Enums have a “tag” that stores which variant is the correct one at runtime; unions don't have this tag. Since we can interpret the data held in the union using the wrong variant and Rust can’t check this for us, that means reading a union’s field is unsafe: # union MyUnion {\n# f1: u32,\n# f2: f32,\n# }\nlet mut u = MyUnion { f1: 1 }; u.f1 = 5; let value = unsafe { u.f1 }; Pattern matching works too: # union MyUnion {\n# f1: u32,\n# f2: f32,\n# }\nfn f(u: MyUnion) { unsafe { match u { MyUnion { f1: 10 } => { println!(\"ten\"); } MyUnion { f2 } => { println!(\"{}\", f2); } } }\n} When are unions useful? One major use-case is interoperability with C. C APIs can (and depending on the area, often do) expose unions, and so this makes writing API wrappers for those libraries significantly easier. Additionally, unions also simplify Rust implementations of space-efficient or cache-efficient structures relying on value representation, such as machine-word-sized unions using the least-significant bits of aligned pointers to distinguish cases. There’s still more improvements to come. For now, unions can only include Copy types and may not implement Drop. We expect to lift these restrictions in the future.","breadcrumbs":"Rust 2018 » Data types » union for an unsafe form of enum » union for an unsafe form of enum","id":"69","title":"union for an unsafe form of enum"},"7":{"body":"エディションは新機能を追加したり機能を削除するだけのものではありません。 どのようなプログラミング言語でも、イディオム(プログラムの書き方のスタイル)は時と共に変化していきます。 Rustも例外ではありません。 古いスタイルのコードは引き続きコンパイル可能ですが、新しいエディションでは違った書き方で書いた方が良いかも知れません。 我々のサンプルコードは古いスタイルを含んでいます。 もう一度ここにそのコードを示します。 trait Foo { fn foo(&self, _: Box);\n} Rust 2018では、トレイトオブジェクトに dyn キーワード を付けるのが良いとされています。 いずれ、cargo fixによってこのようなイディオムの変更も、2018エディションへアップグレードしたときのように自動的に行いたいと考えています。 ただし今現在は、イディオムチェッカーが広範囲の自動修正をできるレベルにはなっていません。 今のところ、コンパイラは多くの場合 cargo fix互換のサジェスチョンを出さなかったり、間違ったサジェスチョンを出したりします。 cargo fixと共にイディオムチェッカーを有効にすると、おそらくはあなたのコードを壊してしまったり、多くの警告が残り続けるということになってしまいます。 Rust 2018の体験の一部として、シームレスなイディオム移行を提供する計画があります。 しかしまだそこには至っていません。 したがって、以下の手順はコンパイラやCargoのバグを乗り越えることを厭わない勇猛な方のみにお勧めします。 以上を踏まえたうえで、私たちのコード片をCargoに修正させてみましょう。 $ cargo fix --edition-idioms 実行後は src/lib.rsは以下のようになります。 trait Foo { fn foo(&self, _: Box);\n} これでコードはより新しいスタイルになりました。 手修正する必要はありませんでした。 なお、cargo fixはコードを自動的に改修することができない場合もあることを覚えておいてください。 その場合は cargo fixは警告メッセージを出すので、それを見て手動でコードを修正してください。 上でも述べたようにイディオムチェッカーには幾つかわかっているバグがあり、まだ実践登用できるレベルではありません。 Cargoのバグレポートを出すようにという恐ろしげな警告を見るかも知れませんが、これは rustcによって提案された修正が誤ってコードをコンパイルできなくしてしまった時に起こります。 もしコンパイルが止まったとしても cargo fixを使ってできるだけ自動修正をしたい場合には以下のコマンドを使います。 $ cargo fix --edition-idioms --broken-code これは、動くかどうかは関係なくcargo fixに自動修正を行わせます。 全ての修正が適用された後にコードはコンパイルされてその結果を見ることができます。 もし何か間違いや異常に気がついた時は、お気軽にCargoにバグ報告してください。 それでは、新しいエディションをお楽しみください!","breadcrumbs":"エディションとは? » 既存のプロジェクトのエディションを移行する » 新しいエディションで慣用的なコードを書く","id":"7","title":"新しいエディションで慣用的なコードを書く"},"70":{"body":"Minimum Rust version: 1.25 From Wikipedia : The CPU in modern computer hardware performs reads and writes to memory most efficiently when the data is naturally aligned, which generally means that the data address is a multiple of the data size. Data alignment refers to aligning elements according to their natural alignment. To ensure natural alignment, it may be necessary to insert some padding between structure elements or after the last element of a structure. The #[repr] attribute has a new parameter, align, that sets the alignment of your struct: struct Number(i32); assert_eq!(std::mem::align_of::(), 4);\nassert_eq!(std::mem::size_of::(), 4); #[repr(align(16))]\nstruct Align16(i32); assert_eq!(std::mem::align_of::(), 16);\nassert_eq!(std::mem::size_of::(), 16); If you’re working with low-level stuff, control of these kinds of things can be very important! The alignment of a type is normally not worried about as the compiler will \"do the right thing\" of picking an appropriate alignment for general use cases. There are situations, however, where a nonstandard alignment may be desired when operating with foreign systems. For example these sorts of situations tend to necessitate or be much easier with a custom alignment: Hardware can often have obscure requirements such as \"this structure is aligned to 32 bytes\" when it in fact is only composed of 4-byte values. While this can typically be manually calculated and managed, it's often also useful to express this as a property of a type to get the compiler to do a little extra work instead. C compilers like gcc and clang offer the ability to specify a custom alignment for structures, and Rust can much more easily interoperate with these types if Rust can also mirror the request for a custom alignment (e.g. passing a structure to C correctly is much easier). Custom alignment can often be used for various tricks here and there and is often convenient as \"let's play around with an implementation\" tool. For example this can be used to statically allocate page tables in a kernel or create an at-least cache-line-sized structure easily for concurrent programming. The purpose of this feature is to provide a lightweight annotation to alter the compiler-inferred alignment of a structure to enable these situations much more easily.","breadcrumbs":"Rust 2018 » Data types » Choosing alignment with the repr attribute » Choosing alignment with the repr attribute","id":"70","title":"Choosing alignment with the repr attribute"},"71":{"body":"Minimum Rust version: 1.27 The basics of SIMD are now available! SIMD stands for “single instruction, multiple data.” Consider a function like this: pub fn foo(a: &[u8], b: &[u8], c: &mut [u8]) { for ((a, b), c) in a.iter().zip(b).zip(c) { *c = *a + *b; }\n} Here, we’re taking two slices, and adding the numbers together, placing the result in a third slice. The simplest possible way to do this would be to do exactly what the code does, and loop through each set of elements, add them together, and store it in the result. However, compilers can often do better. LLVM will usually “autovectorize” code like this, which is a fancy term for “use SIMD.” Imagine that a and b were both 16 elements long. Each element is a u8, and so that means that each slice would be 128 bits of data. Using SIMD, we could put both a and b into 128 bit registers, add them together in a single instruction, and then copy the resulting 128 bits into c. That’d be much faster! While stable Rust has always been able to take advantage of autovectorization, sometimes, the compiler just isn’t smart enough to realize that we can do something like this. Additionally, not every CPU has these features, and so LLVM may not use them so your program can be used on a wide variety of hardware. The std::arch module allows us to use these kinds of instructions directly, which means we don’t need to rely on a smart compiler. Additionally, it includes some features that allow us to choose a particular implementation based on various criteria. For example: #[cfg(all(any(target_arch = \"x86\", target_arch = \"x86_64\"), target_feature = \"avx2\"))]\nfn foo() { #[cfg(target_arch = \"x86\")] use std::arch::x86::_mm256_add_epi64; #[cfg(target_arch = \"x86_64\")] use std::arch::x86_64::_mm256_add_epi64; unsafe { _mm256_add_epi64(...); }\n} Here, we use cfg flags to choose the correct version based on the machine we’re targeting; on x86 we use that version, and on x86_64 we use its version. We can also choose at runtime: fn foo() { #[cfg(any(target_arch = \"x86\", target_arch = \"x86_64\"))] { if is_x86_feature_detected!(\"avx2\") { return unsafe { foo_avx2() }; } } foo_fallback();\n} Here, we have two versions of the function: one which uses AVX2, a specific kind of SIMD feature that lets you do 256-bit operations. The is_x86_feature_detected! macro will generate code that detects if your CPU supports AVX2, and if so, calls the foo_avx2 function. If not, then we fall back to a non-AVX implementation, foo_fallback. This means that our code will run super fast on CPUs that support AVX2, but still work on ones that don’t, albeit slower. If all of this seems a bit low-level and fiddly, well, it is! std::arch is specifically primitives for building these kinds of things. We hope to eventually stabilize a std::simd module with higher-level stuff in the future. But landing the basics now lets the ecosystem experiment with higher level libraries starting today. For example, check out the faster crate. Here’s a code snippet with no SIMD: let lots_of_3s = (&[-123.456f32; 128][..]).iter() .map(|v| { 9.0 * v.abs().sqrt().sqrt().recip().ceil().sqrt() - 4.0 - 2.0 }) .collect::>(); To use SIMD with this code via faster, you’d change it to this: let lots_of_3s = (&[-123.456f32; 128][..]).simd_iter() .simd_map(f32s(0.0), |v| { f32s(9.0) * v.abs().sqrt().rsqrt().ceil().sqrt() - f32s(4.0) - f32s(2.0) }) .scalar_collect(); It looks almost the same: simd_iter instead of iter, simd_map instead of map, f32s(2.0) instead of 2.0. But you get a SIMD-ified version generated for you. Beyond that, you may never write any of this yourself, but as always, the libraries you depend on may. For example, the regex crate contains these SIMD speedups without you needing to do anything at all!","breadcrumbs":"Rust 2018 » SIMD for faster computing » SIMD for faster computing","id":"71","title":"SIMD for faster computing"},"72":{"body":"In this chapter of the guide, we discuss a few improvements to the macro system. A notable addition here is the introduction of custom derive macros .","breadcrumbs":"Rust 2018 » Macros » Macros","id":"72","title":"Macros"},"73":{"body":"Minimum Rust version: 1.15 In Rust, you’ve always been able to automatically implement some traits through the derive attribute: #[derive(Debug)]\nstruct Pet { name: String,\n} The Debug trait is then implemented for Pet, with vastly less boilerplate. For example, without derive, you'd have to write this: use std::fmt; struct Pet { name: String,\n} impl fmt::Debug for Pet { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match self { Pet { name } => { let mut debug_trait_builder = f.debug_struct(\"Pet\"); let _ = debug_trait_builder.field(\"name\", name); debug_trait_builder.finish() } } }\n} Whew! However, this only worked for traits provided as part of the standard library; it was not customizable. But now, you can tell Rust what to do when someone wants to derive your trait. This is used heavily in popular crates like serde and Diesel . For more, including learning how to build your own custom derive, see The Rust Programming Language .","breadcrumbs":"Rust 2018 » Macros » Custom Derive » Custom Derive","id":"73","title":"Custom Derive"},"74":{"body":"Minimum Rust version: 1.31","breadcrumbs":"Rust 2018 » Macros » Macro changes » Macro changes","id":"74","title":"Macro changes"},"75":{"body":"In Rust 2018, you can import specific macros from external crates via use statements, rather than the old #[macro_use] attribute. For example, consider a bar crate that implements a baz! macro. In src/lib.rs: #[macro_export]\nmacro_rules! baz { () => ()\n} In your crate, you would have written // Rust 2015 #[macro_use]\nextern crate bar; fn main() { baz!();\n} Now, you write: // Rust 2018 use bar::baz; fn main() { baz!();\n} This moves macro_rules macros to be a bit closer to other kinds of items. Note that you'll still need #[macro_use] to use macros you've defined in your own crate; this feature only works for importing macros from external crates.","breadcrumbs":"Rust 2018 » Macros » Macro changes » macro_rules! style macros","id":"75","title":"macro_rules! style macros"},"76":{"body":"When using procedural macros to derive traits, you will have to name the macro that provides the custom derive. This generally matches the name of the trait, but check with the documentation of the crate providing the derives to be sure. For example, with Serde you would have written // Rust 2015\nextern crate serde;\n#[macro_use] extern crate serde_derive; #[derive(Serialize, Deserialize)]\nstruct Bar; Now, you write instead: // Rust 2018\nuse serde_derive::{Serialize, Deserialize}; #[derive(Serialize, Deserialize)]\nstruct Bar;","breadcrumbs":"Rust 2018 » Macros » Macro changes » Procedural macros","id":"76","title":"Procedural macros"},"77":{"body":"This only works for macros defined in external crates. For macros defined locally, #[macro_use] mod foo; is still required, as it was in Rust 2015.","breadcrumbs":"Rust 2018 » Macros » Macro changes » More details","id":"77","title":"More details"},"78":{"body":"Sometimes it is helpful or necessary to have helper macros inside your module. This can make supporting both versions of rust more complicated. For example, let's make a simplified (and slightly contrived) version of the log crate in 2015 edition style: use std::fmt; /// How important/severe the log message is.\n#[derive(Copy, Clone)]\npub enum LogLevel { Warn, Error\n} impl fmt::Display for LogLevel { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match self { LogLevel::Warn => write!(f, \"warning\"), LogLevel::Error => write!(f, \"error\"), } }\n} // A helper macro to log the message.\n#[doc(hidden)]\n#[macro_export]\nmacro_rules! __impl_log { ($level:expr, $msg:expr) => {{ println!(\"{}: {}\", $level, $msg) }}\n} /// Warn level log message\n#[macro_export]\nmacro_rules! warn { ($($args:tt)*) => { __impl_log!($crate::LogLevel::Warn, format_args!($($args)*)) }\n} /// Error level log message\n#[macro_export]\nmacro_rules! error { ($($args:tt)*) => { __impl_log!($crate::LogLevel::Error, format_args!($($args)*)) }\n} Our __impl_log! macro is private to our module, but needs to be exported as it is called by other macros, and in 2015 edition all used macros must be exported. Now, in 2018 this example will not compile: use log::error; fn main() { error!(\"error message\");\n} will give an error message about not finding the __impl_log! macro. This is because unlike in the 2015 edition, macros are namespaced and we must import them. We could do use log::{__impl_log, error}; which would make our code compile, but __impl_log is meant to be an implementation detail! Macros with $crate:: prefix. The cleanest way to handle this situation is to use the $crate:: prefix for macros, the same as you would for any other path. Versions of the compiler >= 1.30 will handle this in both editions: macro_rules! warn { ($($args:tt)*) => { $crate::__impl_log!($crate::LogLevel::Warn, format_args!($($args)*)) }\n} // ... However, this will not work for older versions of the compiler that don't understand the $crate:: prefix for macros. Macros using local_inner_macros We also have the local_inner_macros modifier that we can add to our #[macro_export] attribute. This has the advantage of working with older rustc versions (older versions just ignore the extra modifier). The downside is that it's a bit messier: #[macro_export(local_inner_macros)]\nmacro_rules! warn { ($($args:tt)*) => { __impl_log!($crate::LogLevel::Warn, format_args!($($args)*)) }\n} So the code knows to look for any macros used locally. But wait - this won't compile, because we use the format_args! macro that isn't in our local crate (hence the convoluted example). The solution is to add a level of indirection: we create a macro that wraps format_args, but is local to our crate. That way everything works in both editions (sadly we have to pollute the global namespace a bit, but that's ok). // I've used the pattern `___` to name this macro, hopefully avoiding\n// name clashes.\n#[doc(hidden)]\n#[macro_export]\nmacro_rules! _log__format_args { ($($inner:tt)*) => { format_args! { $($inner)* } }\n} Here we're using the most general macro pattern possible, a list of token trees. We just pass whatever tokens we get to the inner macro, and rely on it to report errors. So the full 2015/2018 working example would be: use std::fmt; /// How important/severe the log message is.\n#[derive(Debug, Copy, Clone)]\npub enum LogLevel { Warn, Error\n} impl fmt::Display for LogLevel { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match self { LogLevel::Warn => write!(f, \"warning\"), LogLevel::Error => write!(f, \"error\"), } }\n} // A helper macro to log the message.\n#[doc(hidden)]\n#[macro_export]\nmacro_rules! __impl_log { ($level:expr, $msg:expr) => {{ println!(\"{}: {}\", $level, $msg) }}\n} /// Warn level log message\n#[macro_export(local_inner_macros)]\nmacro_rules! warn { ($($args:tt)*) => { __impl_log!($crate::LogLevel::Warn, _log__format_args!($($args)*)) }\n} /// Error level log message\n#[macro_export(local_inner_macros)]\nmacro_rules! error { ($($args:tt)*) => { __impl_log!($crate::LogLevel::Error, _log__format_args!($($args)*)) }\n} #[doc(hidden)]\n#[macro_export]\nmacro_rules! _log__format_args { ($($inner:tt)*) => { format_args! { $($inner)* } }\n} Once everyone is using a rustc version >= 1.30, we can all just use the $crate:: method (2015 crates are guaranteed to carry on compiling fine with later versions of the compiler). We need to wait for package managers and larger organisations to update their compilers before this happens, so in the mean time we can use the local_inner_macros method to support everybody. :)","breadcrumbs":"Rust 2018 » Macros » Macro changes » Local helper macros","id":"78","title":"Local helper macros"},"79":{"body":"Minimum Rust version: 1.32 for 2018 edition Minimum Rust version: 1.37 for 2015 edition In Rust 2018, we have made a couple of changes to the macros-by-example syntax. We have added a new Kleene operator ? which means \"at most one\" repetition. This operator does not accept a separator token. We have disallowed using ? as a separator to remove ambiguity with ?. For example, consider the following Rust 2015 code: macro_rules! foo { ($a:ident, $b:expr) => { println!(\"{}\", $a); println!(\"{}\", $b); }; ($a:ident) => { println!(\"{}\", $a); }\n} Macro foo can be called with 1 or 2 arguments; the second one is optional, but you need a whole other matcher to represent this possibility. This is annoying if your matchers are long. In Rust 2018, one can simply write the following: macro_rules! foo { ($a:ident $(, $b:expr)?) => { println!(\"{}\", $a); $( println!(\"{}\", $b); )? }\n}","breadcrumbs":"Rust 2018 » Macros » At most one repetition » At most one repetition","id":"79","title":"At most one repetition"},"8":{"body":"Rust 2015は「安定性」というテーマを掲げています。 このエディションはRust 1.0のリリースから始まり、デフォルトのエディションとなっています。 エディションの仕組み自体は2017年末に考案されましたが、Rust 1.0は2015年5月にリリースされていて、「2015」が特定のエディションを指定しなかった時のデフォルトになります。 「安定性」がRust 2015エディションのテーマです。 なぜなら、Rust 1.0はRust開発に著しい変化をもたらしたからです。 Rust 1.0以前は、Rustは毎日のように変わっていました。 そのような言語は大規模なソフトウエア開発には使えないですし、学ぶことも難しいでしょう。 Rust 1.0とRust 2015エディションの登場とともに、我々は後方互換性にコミットし、Rust上で開発を行う人々のための強固な基盤を提供しています。 Rust 2015はデフォルトのエディションなのであなたのコードをRust 2015へポーティングするということはありません。 どんなRustのコードもRust 2015 です 。 あなたは Rust 2015から 離れる ことはあっても、 近づいていく ということはありません。 ということで、これ以上あまり言うことはないでしょう!","breadcrumbs":"Rust 2015 » Rust 2015","id":"8","title":"Rust 2015"},"80":{"body":"In this chapter of the guide, we discuss a few improvements to the compiler. A notable addition here is our new and improved error messages .","breadcrumbs":"Rust 2018 » The compiler » The compiler","id":"80","title":"The compiler"},"81":{"body":"Minimum Rust version: 1.12 We're always working on error improvements, and there are little improvements in almost every Rust version, but in Rust 1.12, a significant overhaul of the error message system was created. For example, here's some code that produces an error: fn main() { let mut x = 5; let y = &x; x += 1; println!(\"{} {}\", x, y);\n} Here's the error in Rust 1.11: foo.rs:4:5: 4:11 error: cannot assign to `x` because it is borrowed [E0506]\nfoo.rs:4 x += 1; ^~~~~~\nfoo.rs:3:14: 3:15 note: borrow of `x` occurs here\nfoo.rs:3 let y = &x; ^\nfoo.rs:4:5: 4:11 help: run `rustc --explain E0506` to see a detailed explanation\nerror: aborting due to previous error Here's the error in Rust 1.28: error[E0506]: cannot assign to `x` because it is borrowed --> foo.rs:4:5 |\n3 | let y = &x; | - borrow of `x` occurs here\n4 | x += 1; | ^^^^^^ assignment to borrowed `x` occurs here error: aborting due to previous error For more information about this error, try `rustc --explain E0506`. This error isn't terribly different, but shows off how the format has changed. It shows off your code in context, rather than just showing the text of the lines themselves.","breadcrumbs":"Rust 2018 » The compiler » Improved error messages » Improved error messages","id":"81","title":"Improved error messages"},"82":{"body":"Minimum Rust version: 1.24 Back in September of 2016, we blogged about Incremental Compilation . While that post goes into the details, the idea is basically this: when you’re working on a project, you often compile it, then change something small, then compile again. Historically, the compiler has compiled your entire project, no matter how little you’ve changed the code. The idea with incremental compilation is that you only need to compile the code you’ve actually changed, which means that that second build is faster. This is now turned on by default. This means that your builds should be faster! Don’t forget about cargo check when trying to get the lowest possible build times. This is still not the end story for compiler performance generally, nor incremental compilation specifically. We have a lot more work planned in the future. One small note about this change: it makes builds faster, but makes the final binary a bit slower. For this reason, it's not turned on in release builds.","breadcrumbs":"Rust 2018 » The compiler » Incremental Compilation for faster compiles » Incremental Compilation","id":"82","title":"Incremental Compilation"},"83":{"body":"Minimum Rust version: 1.9 If you're writing a library, and you'd like to deprecate something, you can use the deprecated attribute: #[deprecated( since = \"0.2.1\", note = \"Please use the bar function instead\"\n)]\npub fn foo() { // ...\n} This will give your users a warning if they use the deprecated functionality: Compiling playground v0.0.1 (file:///playground)\nwarning: use of deprecated item 'foo': Please use the bar function instead --> src/main.rs:10:5 |\n10 | foo(); | ^^^ | = note: #[warn(deprecated)] on by default Both since and note are optional. since can be in the future; you can put whatever you'd like, and what's put in there isn't checked.","breadcrumbs":"Rust 2018 » The compiler » An attribute for deprecation » An attribute for deprecation","id":"83","title":"An attribute for deprecation"},"84":{"body":"Minimum Rust version: various (this tool has its own versioning scheme and works with all Rust versions) The Rustup tool has become the recommended way to install Rust, and is advertised on our website. Its powers go further than that though, allowing you to manage various versions, components, and platforms.","breadcrumbs":"Rust 2018 » Rustup for managing Rust versions » Rustup for managing Rust versions","id":"84","title":"Rustup for managing Rust versions"},"85":{"body":"To install Rust through Rustup, you can go to https://www.rust-lang.org/install.html , which will let you know how to do so on your platform. This will install both rustup itself and the stable version of rustc and cargo. To install a specific Rust version, you can use rustup toolchain install: $ rustup toolchain install 1.30.0 This works for a specific nightly, as well: $ rustup toolchain install nightly-2018-08-01 As well as any of our release channels: $ rustup toolchain install stable\n$ rustup toolchain install beta\n$ rustup toolchain install nightly","breadcrumbs":"Rust 2018 » Rustup for managing Rust versions » For installing Rust","id":"85","title":"For installing Rust"},"86":{"body":"To update all of the various channels you may have installed: $ rustup update This will look at everything you've installed, and if there are new releases, will update anything that has one.","breadcrumbs":"Rust 2018 » Rustup for managing Rust versions » For updating your installation","id":"86","title":"For updating your installation"},"87":{"body":"To set the default toolchain to something other than stable: $ rustup default nightly To uninstall a specific Rust version, you can use rustup toolchain uninstall: $ rustup toolchain uninstall 1.30.0 To use a toolchain other than the default, use rustup run: $ rustup run nightly cargo build There's also an alias for this that's a little shorter: $ cargo +nightly build If you'd like to have a different default per-directory, that's easy too! If you run this inside of a project: $ rustup override set nightly Or, if you'd like to target a different version of Rust: $ rustup override set 1.30.0 Then when you're in that directory, any invocations of rustc or cargo will use that toolchain. To share this with others, you can create a rust-toolchain file with the contents of a toolchain, and check it into source control. Now, when someone clones your project, they'll get the right version without needing to override set themselves.","breadcrumbs":"Rust 2018 » Rustup for managing Rust versions » Managing versions","id":"87","title":"Managing versions"},"88":{"body":"Rust supports cross-compiling to other targets, and Rustup can help you manage them. For example, to use MUSL: $ rustup target add x86_64-unknown-linux-musl And then you can $ cargo build --target=x86_64-unknown-linux-musl To see the full list of targets you can install: $ rustup target list","breadcrumbs":"Rust 2018 » Rustup for managing Rust versions » Installing other targets","id":"88","title":"Installing other targets"},"89":{"body":"Components are used to install certain kinds of tools. While cargo-install has you covered for most tools, some tools need deep integration into the compiler. Rustup knows exactly what version of the compiler you're using, and so it's got just the information that these tools need. Components are per-toolchain, so if you want them to be available to more than one toolchain, you'll need to install them multiple times. In the following examples, add a --toolchain flag, set to the toolchain you want to install for, nightly for example. Without this flag, it will install the component for the default toolchain. To see the full list of components you can install: $ rustup component list Next, let's talk about some popular components and when you might want to install them.","breadcrumbs":"Rust 2018 » Rustup for managing Rust versions » Installing components","id":"89","title":"Installing components"},"9":{"body":"The edition system was created for the release of Rust 2018. The theme of Rust 2018 is productivity . Rust 2018 improves upon Rust 2015 through new features, simpler syntax in some cases, a smarter borrow-checker, and a host of other things. These are all in service of the productivity goal. Rust 2015 was a foundation; Rust 2018 smooths off rough edges, makes writing code simpler and easier, and removes some inconsistencies.","breadcrumbs":"Rust 2018 » Rust 2018","id":"9","title":"Rust 2018"},"90":{"body":"This first component is installed by default when you install a toolchain. It contains a copy of Rust's documentation, so that you can read it offline. This component cannot be removed for now; if that's of interest, please comment on this issue .","breadcrumbs":"Rust 2018 » Rustup for managing Rust versions » rust-docs, for local documentation","id":"90","title":"rust-docs, for local documentation"},"91":{"body":"The rust-src component can give you a local copy of Rust's source code. Why might you need this? Well, autocompletion tools like Racer use this information to know more about the functions you're trying to call. $ rustup component add rust-src","breadcrumbs":"Rust 2018 » Rustup for managing Rust versions » rust-src for a copy of Rust's source code","id":"91","title":"rust-src for a copy of Rust's source code"},"92":{"body":"Minimum Rust version: 1.24 If you'd like to have your code automatically formatted, you can install this component: $ rustup component add rustfmt This will install two tools, rustfmt and cargo-fmt, that will reformat your code for you! For example: $ cargo fmt will reformat your entire Cargo project.","breadcrumbs":"Rust 2018 » Rustup for managing Rust versions » rustfmt for automatic code formatting","id":"92","title":"rustfmt for automatic code formatting"},"93":{"body":"Minimum Rust version: 1.21 Many IDE features are built off of the langserver protocol . To gain support for Rust with these IDEs, you'll need to install the Rust language sever, aka the \"RLS\": $ rustup component add rls For more information about integrating this into your IDE, see the RLS documentation .","breadcrumbs":"Rust 2018 » Rustup for managing Rust versions » rls for IDE integration","id":"93","title":"rls for IDE integration"},"94":{"body":"For even more lints to help you write Rust code, you can install clippy: $ rustup component add clippy This will install cargo-clippy for you: $ cargo clippy For more, check out clippy's documentation .","breadcrumbs":"Rust 2018 » Rustup for managing Rust versions » clippy for more lints","id":"94","title":"clippy for more lints"},"95":{"body":"There are several components in a \"preview\" stage. These components currently have -preview in their name, and this indicates that they're not quite 100% ready for general consumption yet. Please try them out and give us feedback, but know that they do not follow Rust's stability guarantees, and are still actively changing, possibly in backwards-incompatible ways. llvm-tools-preview for using extra LLVM tools If you'd like to use the lld linker, or other tools like llvm-objdump or llvm-objcopy, you can install this component: $ rustup component add llvm-tools-preview This is the newest component, and so doesn't have good documentation at the moment.","breadcrumbs":"Rust 2018 » Rustup for managing Rust versions » The \"preview\" components","id":"95","title":"The \"preview\" components"},"96":{"body":"In this chapter of the guide, we discuss a few improvements to cargo and crates.io . A notable addition here is the new cargo check command.","breadcrumbs":"Rust 2018 » Cargo and crates.io » Cargo and crates.io","id":"96","title":"Cargo and crates.io"},"97":{"body":"Minimum Rust version: 1.16 cargo check is a new subcommand that should speed up the development workflow in many cases. What does it do? Let's take a step back and talk about how rustc compiles your code. Compilation has many \"passes\", that is, there are many distinct steps that the compiler takes on the road from your source code to producing the final binary. However, you can think of this process in two big steps: first, rustc does all of its safety checks, makes sure your syntax is correct, all that stuff. Second, once it's satisfied that everything is in order, it produces the actual binary code that you end up executing. It turns out that that second step takes a lot of time. And most of the time, it's not necessary. That is, when you're working on some Rust code, many developers will get into a workflow like this: Write some code. Run cargo build to make sure it compiles. Repeat 1-2 as needed. Run cargo test to make sure your tests pass. Try the binary yourself GOTO 1. In step two, you never actually run your code. You're looking for feedback from the compiler, not to actually run the binary. cargo check supports exactly this use-case: it runs all of the compiler's checks, but doesn't produce the final binary. To use it: $ cargo check where you may normally cargo build. The workflow now looks like: Write some code. Run cargo check to make sure it compiles. Repeat 1-2 as needed. Run cargo test to make sure your tests pass. Run cargo build to build a binary and try it yourself GOTO 1. So how much speedup do you actually get? Like most performance related questions, the answer is \"it depends.\" Here are some very un-scientific benchmarks at the time of writing. use case build performance check performance speedup initial compile 11s 5.6s 1.96x second compile (no changes) 3s 1.9s 1.57x third compile with small change 5.8s 3s 1.93x","breadcrumbs":"Rust 2018 » Cargo and crates.io » cargo check for faster checking » cargo check for faster checking","id":"97","title":"cargo check for faster checking"},"98":{"body":"Minimum Rust version: 1.5 Cargo has grown a new install command. This is intended to be used for installing new subcommands for Cargo, or tools for Rust developers. This doesn't replace the need to build real, native packages for end-users on the platforms you support. For example, this guide is created with mdbook . You can install it on your system with $ cargo install mdbook And then use it with $ mdbook --help","breadcrumbs":"Rust 2018 » Cargo and crates.io » cargo install for easy installation of tools » cargo install for easy installation of tools","id":"98","title":"cargo install for easy installation of tools"},"99":{"body":"As an example of extending Cargo, you can use the cargo-update package. To install it: $ cargo install cargo-update This will allow you to use cargo install-update -a command, which checks everything you've cargo install'd and updates it to the latest version.","breadcrumbs":"Rust 2018 » Cargo and crates.io » cargo install for easy installation of tools » Cargo Extensions","id":"99","title":"Cargo Extensions"}},"length":157,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{".":{"2":{"5":{"6":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"2":{"5":{"5":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"46":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"0":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"8":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"85":{"tf":1.0}}},"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":3,"docs":{"29":{"tf":1.0},"46":{"tf":1.0},"67":{"tf":1.7320508075688772}},"x":{"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"回":{"df":0,"docs":{},"以":{"df":0,"docs":{},"上":{"df":0,"docs":{},"」":{"df":0,"docs":{},"、":{"+":{"df":0,"docs":{},"演":{"df":0,"docs":{},"算":{"df":0,"docs":{},"子":{"df":0,"docs":{},"が":{"df":0,"docs":{},"「":{"1":{"df":0,"docs":{},"回":{"df":0,"docs":{},"以":{"df":0,"docs":{},"上":{"df":0,"docs":{},"」":{"df":0,"docs":{},"の":{"df":0,"docs":{},"繰":{"df":0,"docs":{},"り":{"df":0,"docs":{},"返":{"df":0,"docs":{},"し":{"df":0,"docs":{},"パ":{"df":0,"docs":{},"タ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ン":{"df":0,"docs":{},"を":{"df":0,"docs":{},"表":{"df":0,"docs":{},"す":{"df":0,"docs":{},"の":{"df":0,"docs":{},"と":{"df":0,"docs":{},"同":{"df":0,"docs":{},"様":{"df":0,"docs":{},"に":{"df":0,"docs":{},"、":{"?":{"df":0,"docs":{},"演":{"df":0,"docs":{},"算":{"df":0,"docs":{},"子":{"df":0,"docs":{},"は":{"0":{"df":0,"docs":{},"も":{"df":0,"docs":{},"し":{"df":0,"docs":{},"く":{"df":0,"docs":{},"は":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"1":{".":{".":{"3":{"df":1,"docs":{"66":{"tf":1.0}}},"=":{"3":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"109":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.0},"151":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.4142135623730951},"66":{"tf":1.0},"8":{"tf":1.0}},"f":{"3":{"2":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"と":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"は":{"2":{"0":{"1":{"5":{"df":0,"docs":{},"年":{"5":{"df":0,"docs":{},"月":{"df":0,"docs":{},"に":{"df":0,"docs":{},"リ":{"df":0,"docs":{},"リ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ス":{"df":0,"docs":{},"さ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"い":{"df":0,"docs":{},"て":{"df":0,"docs":{},"、":{"df":0,"docs":{},"「":{"2":{"0":{"1":{"5":{"df":1,"docs":{"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":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"以":{"df":0,"docs":{},"前":{"df":0,"docs":{},"は":{"df":0,"docs":{},"、":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}}},"1":{"0":{"df":2,"docs":{"127":{"tf":1.0},"32":{"tf":1.0}},"か":{"df":0,"docs":{},"ら":{"1":{".":{"2":{"0":{"df":0,"docs":{},"の":{"df":0,"docs":{},"間":{"df":0,"docs":{},"に":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"127":{"tf":1.0},"81":{"tf":1.0}}},"2":{"df":3,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"28":{"tf":1.0}}},"4":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"73":{"tf":1.0}}},"6":{"df":1,"docs":{"97":{"tf":1.0}}},"7":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.0}}},"8":{"df":2,"docs":{"109":{"tf":1.0},"25":{"tf":1.0}}},"9":{"df":2,"docs":{"34":{"tf":1.0},"69":{"tf":1.0}}},"df":2,"docs":{"101":{"tf":1.0},"124":{"tf":1.0}}},"2":{".":{"3":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"1":{"df":6,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"93":{"tf":1.0}}},"2":{"df":3,"docs":{"104":{"tf":1.0},"117":{"tf":1.4142135623730951},"28":{"tf":1.0}}},"3":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"82":{"tf":1.0},"92":{"tf":1.0}}},"5":{"df":5,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"26":{"tf":1.0},"70":{"tf":1.0}}},"6":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"29":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"7":{"df":2,"docs":{"43":{"tf":1.0},"71":{"tf":1.0}}},"8":{".":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":1.0},"81":{"tf":1.0}},"で":{"df":0,"docs":{},"グ":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"バ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ア":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ケ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"タ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"を":{"df":0,"docs":{},"選":{"df":0,"docs":{},"択":{"df":0,"docs":{},"で":{"df":0,"docs":{},"き":{"df":0,"docs":{},"る":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"う":{"df":0,"docs":{},"に":{"df":0,"docs":{},"な":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"か":{"df":0,"docs":{},"ら":{"df":0,"docs":{},"、":{"df":0,"docs":{},"我":{"df":0,"docs":{},"々":{"df":0,"docs":{},"は":{"df":0,"docs":{},"シ":{"df":0,"docs":{},"ス":{"df":0,"docs":{},"テ":{"df":0,"docs":{},"ム":{"df":0,"docs":{},"の":{"df":0,"docs":{},"提":{"df":0,"docs":{},"供":{"df":0,"docs":{},"す":{"df":0,"docs":{},"る":{"df":0,"docs":{},"ア":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ケ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"タ":{"df":0,"docs":{},"を":{"df":0,"docs":{},"デ":{"df":0,"docs":{},"フ":{"df":0,"docs":{},"ォ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"に":{"df":0,"docs":{},"し":{"df":0,"docs":{},"て":{"df":0,"docs":{},"、":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"3":{"0":{".":{"0":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"13":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"1":{"df":18,"docs":{"109":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}},"2":{".":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"24":{"tf":1.0},"79":{"tf":1.0}}},"3":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"151":{"tf":1.0},"152":{"tf":1.0}}},"5":{"df":1,"docs":{"150":{"tf":1.0}},"か":{"df":0,"docs":{},"ら":{"df":0,"docs":{},"こ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"ら":{"df":0,"docs":{},"の":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"レ":{"df":0,"docs":{},"イ":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"が":{"df":0,"docs":{},"こ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"ら":{"df":0,"docs":{},"の":{"df":0,"docs":{},"型":{"df":0,"docs":{},"に":{"df":0,"docs":{},"実":{"df":0,"docs":{},"装":{"df":0,"docs":{},"さ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"た":{"df":0,"docs":{},"の":{"df":0,"docs":{},"で":{"df":0,"docs":{},"、":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"6":{".":{"0":{",":{"df":0,"docs":{},"か":{"df":0,"docs":{},"ら":{"df":0,"docs":{},"、":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"の":{"df":0,"docs":{},"中":{"df":0,"docs":{},"で":{"df":0,"docs":{},"、":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"t":{">":{"df":0,"docs":{},"の":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"う":{"df":0,"docs":{},"な":{"df":0,"docs":{},"グ":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"バ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ア":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ケ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"タ":{"df":0,"docs":{},"に":{"df":0,"docs":{},"依":{"df":0,"docs":{},"存":{"df":0,"docs":{},"し":{"df":0,"docs":{},"て":{"df":0,"docs":{},"い":{"df":0,"docs":{},"る":{"df":0,"docs":{},"部":{"df":0,"docs":{},"分":{"df":0,"docs":{},"は":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"54":{"tf":1.0}}},"7":{"df":2,"docs":{"156":{"tf":1.0},"79":{"tf":1.0}}},"9":{"df":1,"docs":{"155":{"tf":1.0}}},"df":1,"docs":{"114":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"5":{"7":{"df":0,"docs":{},"x":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"98":{"tf":1.0}}},"6":{"df":2,"docs":{"107":{"tf":1.0},"120":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"9":{"3":{"df":0,"docs":{},"x":{"df":1,"docs":{"97":{"tf":1.0}}}},"6":{"df":0,"docs":{},"x":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":3,"docs":{"31":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"124":{"tf":1.0},"95":{"tf":1.0}}},"df":6,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0}}},"1":{"df":1,"docs":{"97":{"tf":1.0}}},"2":{"3":{".":{"4":{"5":{"6":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"]":{"[":{".":{".":{"]":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"67":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"8":{"5":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"7":{"0":{",":{"1":{"4":{"1":{",":{"1":{"8":{"3":{",":{"4":{"6":{"0":{",":{"4":{"6":{"9":{",":{"2":{"3":{"1":{",":{"7":{"3":{"1":{",":{"6":{"8":{"7":{",":{"3":{"0":{"3":{",":{"7":{"1":{"5":{",":{"8":{"8":{"4":{",":{"1":{"0":{"5":{",":{"7":{"2":{"7":{"df":1,"docs":{"67":{"tf":1.0}}},"8":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"1":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":15,"docs":{"130":{"tf":4.242640687119285},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.7320508075688772},"97":{"tf":2.0}}},"2":{",":{"3":{"df":0,"docs":{},"年":{"df":0,"docs":{},"に":{"df":0,"docs":{},"一":{"df":0,"docs":{},"度":{"df":0,"docs":{},"、":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"1":{"5":{"/":{"2":{"0":{"1":{"8":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"10":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":2.449489742783178},"9":{"tf":1.4142135623730951}},"と":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"は":{"df":0,"docs":{},"デ":{"df":0,"docs":{},"フ":{"df":0,"docs":{},"ォ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"の":{"df":0,"docs":{},"エ":{"df":0,"docs":{},"デ":{"df":0,"docs":{},"ィ":{"df":0,"docs":{},"シ":{"df":0,"docs":{},"ョ":{"df":0,"docs":{},"ン":{"df":0,"docs":{},"な":{"df":0,"docs":{},"の":{"df":0,"docs":{},"で":{"df":0,"docs":{},"あ":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"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":0,"docs":{},"と":{"df":0,"docs":{},"も":{"df":0,"docs":{},"に":{"df":0,"docs":{},"、":{"df":0,"docs":{},"我":{"df":0,"docs":{},"々":{"df":0,"docs":{},"は":{"df":0,"docs":{},"後":{"df":0,"docs":{},"方":{"df":0,"docs":{},"互":{"df":0,"docs":{},"換":{"df":0,"docs":{},"性":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"6":{"df":1,"docs":{"82":{"tf":1.0}}},"7":{"df":0,"docs":{},"年":{"df":0,"docs":{},"末":{"df":0,"docs":{},"に":{"df":0,"docs":{},"考":{"df":0,"docs":{},"案":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}}}}}}}}}}},"8":{"df":35,"docs":{"10":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"128":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"35":{"tf":1.0},"4":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"で":{"df":0,"docs":{},"は":{"df":0,"docs":{},"キ":{"df":0,"docs":{},"ー":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}}}}}}}}}},"モ":{"df":0,"docs":{},"ジ":{"df":0,"docs":{},"ュ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"シ":{"df":0,"docs":{},"ス":{"df":0,"docs":{},"テ":{"df":0,"docs":{},"ム":{"df":0,"docs":{},"に":{"df":0,"docs":{},"幾":{"df":0,"docs":{},"つ":{"df":0,"docs":{},"か":{"df":0,"docs":{},"の":{"df":0,"docs":{},"改":{"df":0,"docs":{},"善":{"df":0,"docs":{},"が":{"df":0,"docs":{},"加":{"df":0,"docs":{},"え":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"の":{"df":0,"docs":{},"セ":{"df":0,"docs":{},"ク":{"df":0,"docs":{},"シ":{"df":0,"docs":{},"ョ":{"df":0,"docs":{},"ン":{"df":0,"docs":{},"に":{"df":0,"docs":{},"含":{"df":0,"docs":{},"め":{"df":0,"docs":{},"な":{"df":0,"docs":{},"か":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"た":{"df":0,"docs":{},"理":{"df":0,"docs":{},"由":{"df":0,"docs":{},"な":{"df":0,"docs":{},"の":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"へ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"移":{"df":0,"docs":{},"行":{"df":0,"docs":{},"を":{"df":0,"docs":{},"助":{"df":0,"docs":{},"け":{"df":0,"docs":{},"る":{"df":0,"docs":{},"た":{"df":0,"docs":{},"め":{"df":0,"docs":{},"に":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"章":{"2":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"8":{"8":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"9":{"4":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"130":{"tf":1.7320508075688772}}},"5":{"6":{"df":2,"docs":{"66":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"df":13,"docs":{"117":{"tf":1.0},"130":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"57":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"79":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"3":{"2":{"df":1,"docs":{"70":{"tf":1.0}}},"4":{"0":{",":{"2":{"8":{"2":{",":{"3":{"6":{"6":{",":{"9":{"2":{"0":{",":{"9":{"3":{"8":{",":{"4":{"6":{"3":{",":{"4":{"6":{"3":{",":{"3":{"7":{"4":{",":{"6":{"0":{"7":{",":{"4":{"3":{"1":{",":{"7":{"6":{"8":{",":{"2":{"1":{"1":{",":{"4":{"5":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"5":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"130":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"48":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"66":{"tf":1.0},"81":{"tf":1.0}},"s":{"df":1,"docs":{"97":{"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":{},"に":{"2":{"0":{"2":{"1":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"4":{".":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},":":{"1":{"1":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"152":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"81":{"tf":1.0}}},"5":{"\"":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"6":{"df":1,"docs":{"97":{"tf":1.0}}},"8":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":22,"docs":{"117":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}}},"6":{"4":{"df":1,"docs":{"125":{"tf":1.0}}},"df":7,"docs":{"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0}}},"7":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"8":{"df":1,"docs":{"55":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"_":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"!":{"(":{"$":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}},"未":{"df":0,"docs":{},"定":{"df":0,"docs":{},"義":{"df":0,"docs":{},"動":{"df":0,"docs":{},"作":{"_":{"_":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":9,"docs":{"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"50":{"tf":3.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"73":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.4142135623730951}},"s":{"!":{"(":{"$":{"(":{"$":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"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":{}}}},"m":{"df":0,"docs":{},"m":{"2":{"5":{"6":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"6":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"b":{")":{".":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},":":{":":{"b":{":":{":":{"c":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"32":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.7320508075688772},"32":{"tf":2.0},"81":{"tf":1.4142135623730951}}}},"v":{"df":7,"docs":{"106":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"79":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"47":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"95":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":2.0}}}},"df":0,"docs":{}}}},"d":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":15,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":2.0},"20":{"tf":1.7320508075688772},"31":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":7,"docs":{"104":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"26":{"tf":1.0},"50":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"28":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":1,"docs":{"109":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"a":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"42":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"1":{"6":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":4.123105625617661}}}}},"l":{"df":0,"docs":{},"o":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"120":{"tf":1.0},"122":{"tf":3.4641016151377544},"131":{"tf":1.0},"154":{"tf":1.4142135623730951},"20":{"tf":2.0},"39":{"tf":1.0},"70":{"tf":1.0}},"を":{"df":0,"docs":{},"使":{"df":0,"docs":{},"う":{"#":{"!":{"[":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"]":{"df":0,"docs":{},"バ":{"df":0,"docs":{},"イ":{"df":0,"docs":{},"ナ":{"df":0,"docs":{},"リ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"サ":{"df":0,"docs":{},"ポ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"が":{"df":0,"docs":{},"安":{"df":0,"docs":{},"定":{"df":0,"docs":{},"化":{"df":0,"docs":{},"す":{"df":0,"docs":{},"る":{"df":0,"docs":{},"前":{"df":0,"docs":{},"に":{"df":0,"docs":{},"、":{"#":{"!":{"[":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":13,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"31":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"58":{"tf":1.0},"71":{"tf":1.4142135623730951},"84":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}},"n":{"df":2,"docs":{"106":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"29":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":3,"docs":{"24":{"tf":1.0},"44":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":4,"docs":{"10":{"tf":1.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"20":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"97":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"114":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"38":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0}}},"df":3,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"123":{"tf":1.0},"20":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"18":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"38":{"tf":1.0}},"s":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"[":{"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"138":{"tf":1.0},"140":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":2.0}}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}}},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"r":{"#":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{":":{":":{"<":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"1":{"6":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{":":{":":{"<":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"1":{"6":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"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":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.7320508075688772}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"41":{"tf":1.0},"46":{"tf":3.4641016151377544},"61":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":1.0},"63":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":2.23606797749979},"33":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"20":{"tf":2.0},"57":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":1,"docs":{"20":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"24":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"2":{"df":1,"docs":{"71":{"tf":2.0}}},"df":1,"docs":{"71":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"30":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},":":{":":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"105":{"tf":2.23606797749979},"134":{"tf":1.0},"139":{"tf":1.0},"148":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"63":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"i":{"c":{"df":2,"docs":{"71":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":3,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":2.0}}}},"df":6,"docs":{"48":{"tf":1.0},"59":{"tf":2.6457513110645907},"61":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"71":{"tf":2.23606797749979},"79":{"tf":1.4142135623730951}},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"df":3,"docs":{"31":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"20":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"20":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"71":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"123":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"70":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"97":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":2.449489742783178}}}}},"d":{"df":5,"docs":{"42":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"t":{"df":10,"docs":{"125":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":2.23606797749979},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"109":{"tf":1.0}}},"df":8,"docs":{"108":{"tf":1.0},"109":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"40":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}}},"r":{"df":1,"docs":{"63":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"54":{"tf":2.8284271247461903},"55":{"tf":3.3166247903554},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"81":{"tf":2.23606797749979},"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"13":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":2.23606797749979}}}}},"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"5":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":6,"docs":{"150":{"tf":2.449489742783178},"152":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"f":{"df":1,"docs":{"150":{"tf":1.0}},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"3":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":1.0},"107":{"tf":1.0}}}},"df":2,"docs":{"34":{"tf":2.0},"38":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"120":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"105":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":16,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":2.0},"126":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"93":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"c":{"1":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"28":{"tf":2.23606797749979},"30":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"41":{"tf":1.7320508075688772}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":9,"docs":{"105":{"tf":1.7320508075688772},"11":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"151":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":28,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.449489742783178},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":2.449489742783178},"11":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"20":{"tf":2.0},"3":{"tf":1.4142135623730951},"5":{"tf":2.0},"7":{"tf":3.605551275463989},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":3.1622776601683795},"98":{"tf":2.0},"99":{"tf":2.6457513110645907}},"’":{"df":2,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951}}},"は":{".":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"38":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"17":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"40":{"tf":1.0},"50":{"tf":1.0}}}},"df":1,"docs":{"3":{"tf":1.0}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"s":{"df":4,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":8,"docs":{"118":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"g":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":17,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"20":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"109":{"tf":1.0},"20":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":3.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"106":{"tf":1.0},"125":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"41":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"22":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"18":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"r":{"df":3,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"59":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"100":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":2.23606797749979}}},"y":{"'":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"109":{"tf":1.0}},"r":{"df":2,"docs":{"35":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.449489742783178},"56":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":33,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"124":{"tf":1.0},"127":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":2.23606797749979},"28":{"tf":2.449489742783178},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"110":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"52":{"tf":1.0},"69":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"29":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":18,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.449489742783178},"13":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"66":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"78":{"tf":2.8284271247461903},"80":{"tf":1.4142135623730951},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"97":{"tf":3.0}},"e":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"120":{"tf":1.0},"24":{"tf":1.0}}},"x":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"24":{"tf":1.0},"37":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"122":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}}},"s":{"df":1,"docs":{"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"13":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"59":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"70":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"18":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"18":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"117":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":3.1622776601683795}}}}},"df":16,"docs":{"135":{"tf":3.1622776601683795},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"46":{"tf":3.0},"63":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"103":{"tf":1.7320508075688772},"109":{"tf":1.0},"115":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"48":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"59":{"tf":2.0},"81":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"31":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"122":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":6,"docs":{"109":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}},"ク":{"df":0,"docs":{},"レ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"は":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"や":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"の":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"う":{"df":0,"docs":{},"な":{"df":0,"docs":{},"主":{"df":0,"docs":{},"要":{"df":0,"docs":{},"機":{"df":0,"docs":{},"能":{"df":0,"docs":{},"を":{"df":0,"docs":{},"提":{"df":0,"docs":{},"供":{"df":0,"docs":{},"し":{"df":0,"docs":{},"、":{"df":0,"docs":{},"何":{"df":0,"docs":{},"も":{"df":0,"docs":{},"前":{"df":0,"docs":{},"提":{"df":0,"docs":{},"条":{"df":0,"docs":{},"件":{"df":0,"docs":{},"が":{"df":0,"docs":{},"な":{"df":0,"docs":{},"か":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"た":{"df":0,"docs":{},"の":{"df":0,"docs":{},"で":{"#":{"!":{"[":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"31":{"tf":1.0},"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"20":{"tf":1.0}}},":":{":":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"!":{"(":{"$":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"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":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":21,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"151":{"tf":1.0},"154":{"tf":1.0},"18":{"tf":2.23606797749979},"20":{"tf":5.0990195135927845},"21":{"tf":3.0},"22":{"tf":2.8284271247461903},"24":{"tf":2.6457513110645907},"25":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":2.449489742783178},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":3.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"105":{"tf":1.0},"106":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"151":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"117":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"44":{"tf":1.0},"95":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"122":{"tf":1.0},"70":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"t":{"a":{"df":7,"docs":{"28":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"g":{"!":{"(":{"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":2.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"29":{"tf":1.4142135623730951},"55":{"tf":1.0},"73":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.0},"34":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"18":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"151":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"105":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"72":{"tf":1.0},"73":{"tf":2.23606797749979},"76":{"tf":1.7320508075688772}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"68":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"46":{"tf":1.0}}}},"r":{"df":2,"docs":{"122":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":18,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"30":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"103":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"123":{"tf":1.0},"24":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"11":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"107":{"tf":1.0},"79":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"31":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"df":3,"docs":{"20":{"tf":1.4142135623730951},"28":{"tf":1.0},"32":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.0},"31":{"tf":1.4142135623730951},"39":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"71":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"31":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"114":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"60":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"31":{"tf":1.7320508075688772},"60":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":1.0},"39":{"tf":1.7320508075688772}}}},"df":6,"docs":{"10":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"81":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"df":1,"docs":{"28":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"110":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"106":{"tf":1.0},"37":{"tf":1.0}},"i":{"df":5,"docs":{"122":{"tf":1.0},"24":{"tf":1.0},"48":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":3.1622776601683795},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.7320508075688772},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979},"79":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"キ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"が":{"df":0,"docs":{},"な":{"df":0,"docs":{},"け":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"ば":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"51":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}},"s":{",":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"31":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"120":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":2.6457513110645907}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"118":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"o":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"18":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"132":{"tf":1.0},"138":{"tf":1.0},"24":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"130":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"は":{"df":0,"docs":{},"常":{"df":0,"docs":{},"に":{"(":{")":{"df":0,"docs":{},"を":{"df":0,"docs":{},"返":{"df":0,"docs":{},"し":{"df":0,"docs":{},"ま":{"df":0,"docs":{},"す":{"df":0,"docs":{},"が":{"df":0,"docs":{},"、":{"d":{"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"130":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"28":{"tf":2.0},"29":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"e":{"0":{"0":{"0":{"4":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"7":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"2":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":17,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":3.3166247903554},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.0},"66":{"tf":1.7320508075688772},"78":{"tf":3.3166247903554},"80":{"tf":1.0},"81":{"tf":3.605551275463989}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"28":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"123":{"tf":1.0},"42":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"48":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"24":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"51":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":3.3166247903554},"106":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":2.0},"117":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"31":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"41":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"n":{"df":3,"docs":{"109":{"tf":1.0},"39":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"20":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"31":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"46":{"tf":1.0},"70":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"28":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"28":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"=":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":12,"docs":{"10":{"tf":1.0},"120":{"tf":1.0},"154":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":3.3166247903554},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"24":{"tf":2.23606797749979},"25":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"r":{"a":{"df":4,"docs":{"46":{"tf":1.4142135623730951},"70":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"f":{"(":{"df":0,"docs":{},"u":{"df":1,"docs":{"69":{"tf":1.0}}}},".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"m":{"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":{}}}},"1":{"df":1,"docs":{"69":{"tf":2.23606797749979}}},"2":{"df":1,"docs":{"69":{"tf":2.23606797749979}}},"3":{"2":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"46":{"tf":2.8284271247461903},"69":{"tf":1.7320508075688772}},"s":{"(":{"2":{".":{"0":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"(":{"4":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"116":{"tf":1.0},"117":{"tf":2.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"56":{"tf":1.0},"66":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}},"s":{"df":2,"docs":{"130":{"tf":1.7320508075688772},"155":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"40":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"110":{"tf":1.0},"55":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"71":{"tf":2.0},"82":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":7,"docs":{"150":{"tf":1.0},"20":{"tf":1.7320508075688772},"28":{"tf":2.23606797749979},"29":{"tf":1.7320508075688772},"41":{"tf":2.0},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":2.449489742783178}}}}},"w":{"df":14,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"11":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":2.6457513110645907},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"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":7,"docs":{"104":{"tf":2.0},"106":{"tf":2.0},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"31":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"d":{"df":6,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"78":{"tf":1.0}},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"135":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772}}}},"x":{"df":4,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":2.0},"7":{"tf":2.8284271247461903}},"に":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"こ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"う":{"df":0,"docs":{},"な":{"df":0,"docs":{},"イ":{"df":0,"docs":{},"デ":{"df":0,"docs":{},"ィ":{"df":0,"docs":{},"オ":{"df":0,"docs":{},"ム":{"df":0,"docs":{},"の":{"df":0,"docs":{},"変":{"df":0,"docs":{},"更":{"df":0,"docs":{},"も":{"df":0,"docs":{},"、":{"2":{"0":{"1":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"20":{"tf":1.7320508075688772},"71":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":2.449489742783178}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"0":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"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":3,"docs":{"30":{"tf":1.0},"58":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"58":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"n":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"150":{"tf":2.0}},"と":{"df":0,"docs":{},"い":{"df":0,"docs":{},"う":{"df":0,"docs":{},"新":{"df":0,"docs":{},"し":{"df":0,"docs":{},"い":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"レ":{"df":0,"docs":{},"イ":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"を":{"df":0,"docs":{},"定":{"df":0,"docs":{},"義":{"df":0,"docs":{},"し":{"df":0,"docs":{},"、":{"df":0,"docs":{},"全":{"df":0,"docs":{},"て":{"df":0,"docs":{},"の":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"df":54,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":2.0},"133":{"tf":1.0},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":2.0},"150":{"tf":2.0},"152":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":2.449489742783178},"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":2.8284271247461903},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":2.23606797749979},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"150":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"か":{"df":0,"docs":{},"ら":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"で":{"df":0,"docs":{},"利":{"df":0,"docs":{},"用":{"df":0,"docs":{},"で":{"df":0,"docs":{},"き":{"df":0,"docs":{},"る":{"df":0,"docs":{},"表":{"df":0,"docs":{},"記":{"df":0,"docs":{},"方":{"df":0,"docs":{},"が":{"df":0,"docs":{},"増":{"df":0,"docs":{},"え":{"df":0,"docs":{},"る":{"df":0,"docs":{},"に":{"df":0,"docs":{},"従":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"、":{"df":0,"docs":{},"標":{"df":0,"docs":{},"準":{"df":0,"docs":{},"ラ":{"df":0,"docs":{},"イ":{"df":0,"docs":{},"ブ":{"df":0,"docs":{},"ラ":{"df":0,"docs":{},"リ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"機":{"df":0,"docs":{},"能":{"df":0,"docs":{},"が":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"に":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"り":{"df":0,"docs":{},"コ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ド":{"df":0,"docs":{},"を":{"df":0,"docs":{},"「":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"の":{"df":0,"docs":{},"中":{"df":0,"docs":{},"で":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"を":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"10":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.0},"29":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.4142135623730951},"89":{"tf":1.0},"95":{"tf":1.0}}}}}},"o":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"4":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}},"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"145":{"tf":1.0}}}},")":{"?":{".":{"b":{"a":{"df":0,"docs":{},"r":{"(":{")":{"?":{".":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"71":{"tf":1.0}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}},".":{"df":0,"docs":{},"r":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":2.23606797749979}},"s":{":":{"3":{":":{"1":{"4":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"81":{"tf":1.0}}},"4":{":":{"5":{"df":1,"docs":{"81":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{">":{"(":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"'":{"_":{"df":1,"docs":{"59":{"tf":1.0}}},"a":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"\\":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"2":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":34,"docs":{"105":{"tf":2.0},"117":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":2.0},"37":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772}},"は":{"df":0,"docs":{},"タ":{"df":0,"docs":{},"プ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"の":{"df":0,"docs":{},"値":{"df":0,"docs":{},"を":{"df":0,"docs":{},"x":{"df":0,"docs":{},"と":{"df":0,"docs":{},"i":{"df":1,"docs":{"145":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"g":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":2.0}},"s":{"!":{"(":{"$":{"(":{"$":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"81":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":8,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"25":{"tf":1.7320508075688772},"31":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":3,"docs":{"113":{"tf":1.0},"13":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{">":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.4142135623730951}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":1,"docs":{"124":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"24":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"43":{"tf":1.0}}},"2":{"df":1,"docs":{"43":{"tf":1.0}}},"df":17,"docs":{"10":{"tf":1.7320508075688772},"115":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"22":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"46":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"84":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"44":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"103":{"tf":2.23606797749979},"115":{"tf":1.0},"153":{"tf":1.4142135623730951},"20":{"tf":2.0},"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"121":{"tf":1.4142135623730951},"28":{"tf":1.0},"93":{"tf":1.0}}}}},"c":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"115":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":3,"docs":{"100":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":9,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"65":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":3,"docs":{"122":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"122":{"tf":1.7320508075688772},"131":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":2,"docs":{"122":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":7,"docs":{"123":{"tf":1.0},"18":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0}}},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":3,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}},"t":{"(":{"&":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"26":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"98":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"i":{"d":{"df":15,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"120":{"tf":1.0}},"l":{"df":9,"docs":{"122":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"50":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"23":{"tf":1.0},"28":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"54":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}},"r":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"p":{"df":7,"docs":{"29":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"78":{"tf":2.0}}}}}},"n":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"121":{"tf":1.0},"18":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.7320508075688772}}},"df":22,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"44":{"tf":1.0},"48":{"tf":2.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.449489742783178},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"96":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":1,"docs":{"71":{"tf":1.0}}}}},"y":{"df":2,"docs":{"41":{"tf":1.0},"48":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"82":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"l":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"115":{"tf":1.0},"71":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"29":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"d":{"df":0,"docs":{},"o":{"c":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"i":{"'":{"df":0,"docs":{},"m":{"df":3,"docs":{"114":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0}}},"v":{"df":1,"docs":{"78":{"tf":1.0}}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"120":{"tf":1.0},"28":{"tf":1.0}}}},"1":{"2":{"8":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":18,"docs":{"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"30":{"tf":2.0},"39":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"46":{"tf":2.23606797749979},"93":{"tf":2.0}},"e":{"a":{"df":4,"docs":{"118":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":2.449489742783178},"14":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979}}}}},"p":{"df":0,"docs":{},"l":{"<":{"'":{"a":{"df":3,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"30":{"tf":1.0}},"f":{"df":1,"docs":{"150":{"tf":1.0}}},"i":{"df":1,"docs":{"60":{"tf":1.0}}},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":18,"docs":{"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":2.0},"39":{"tf":2.23606797749979},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.0},"46":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"118":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":1,"docs":{"61":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":8,"docs":{"100":{"tf":1.0},"20":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"38":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":15,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"9":{"tf":1.0},"96":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":9,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"9":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"151":{"tf":1.0},"31":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"70":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":11,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}},"i":{"df":4,"docs":{"123":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"28":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"104":{"tf":1.7320508075688772},"127":{"tf":1.0},"21":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"78":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"121":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":3.1622776601683795},"86":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":2.8284271247461903},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":1.7320508075688772}},"l":{"'":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":20,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"121":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"76":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}},"r":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"n":{"d":{"df":3,"docs":{"105":{"tf":1.0},"127":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"90":{"tf":1.0}}}}},"f":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"127":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{"7":{"8":{"7":{"8":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"123":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"27":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"28":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"s":{"_":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}},"e":{"d":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"2":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"30":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"'":{"df":16,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.7320508075688772},"123":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"'":{"a":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":6,"docs":{"28":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"111":{"tf":1.0},"20":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"100":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"122":{"tf":1.4142135623730951},"131":{"tf":2.8284271247461903}},"は":{"df":0,"docs":{},"特":{"df":0,"docs":{},"定":{"df":0,"docs":{},"の":{"df":0,"docs":{},"プ":{"df":0,"docs":{},"ラ":{"df":0,"docs":{},"ッ":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"フ":{"df":0,"docs":{},"ォ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ム":{"df":0,"docs":{},"で":{"df":0,"docs":{},"の":{"df":0,"docs":{},"み":{"df":0,"docs":{},"デ":{"df":0,"docs":{},"フ":{"df":0,"docs":{},"ォ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"な":{"df":0,"docs":{},"の":{"df":0,"docs":{},"で":{"df":0,"docs":{},"、":{"df":0,"docs":{},"そ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"が":{"df":0,"docs":{},"常":{"df":0,"docs":{},"に":{"df":0,"docs":{},"デ":{"df":0,"docs":{},"フ":{"df":0,"docs":{},"ォ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"だ":{"df":0,"docs":{},"と":{"df":0,"docs":{},"言":{"df":0,"docs":{},"う":{"df":0,"docs":{},"の":{"df":0,"docs":{},"は":{"df":0,"docs":{},"や":{"df":0,"docs":{},"や":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"を":{"df":0,"docs":{},"使":{"df":0,"docs":{},"い":{"df":0,"docs":{},"続":{"df":0,"docs":{},"け":{"df":0,"docs":{},"た":{"df":0,"docs":{},"い":{"df":0,"docs":{},"の":{"df":0,"docs":{},"で":{"df":0,"docs":{},"あ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"ば":{"df":0,"docs":{},"、":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"う":{"df":0,"docs":{},"と":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"の":{"df":0,"docs":{},"す":{"df":0,"docs":{},"べ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"の":{"df":0,"docs":{},"バ":{"df":0,"docs":{},"イ":{"df":0,"docs":{},"ナ":{"df":0,"docs":{},"リ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"が":{"3":{"0":{"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"b":{"df":2,"docs":{"109":{"tf":1.0},"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"y":{"df":3,"docs":{"122":{"tf":1.0},"31":{"tf":1.0},"65":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"10":{"tf":2.23606797749979},"13":{"tf":2.23606797749979},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"n":{"d":{"df":7,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"109":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"121":{"tf":1.0},"51":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"111":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"109":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"28":{"tf":2.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.0},"57":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"99":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"31":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"113":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"73":{"tf":1.0}}}},"v":{"df":1,"docs":{"59":{"tf":1.0}}}},"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"19":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}},"df":4,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"71":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"105":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"24":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"78":{"tf":2.6457513110645907}}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"55":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"23":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"の":{"df":0,"docs":{},"先":{"df":0,"docs":{},"頭":{"df":0,"docs":{},"に":{"df":0,"docs":{},"入":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"、":{"#":{"[":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":2.6457513110645907}},"e":{"'":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"127":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"100":{"tf":2.23606797749979},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"14":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":9,"docs":{"109":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":2.23606797749979},"60":{"tf":2.0},"61":{"tf":1.0},"63":{"tf":2.23606797749979}}}}}},"t":{"df":5,"docs":{"23":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"69":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":7,"docs":{"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}},"k":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"t":{"df":2,"docs":{"10":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"x":{"df":5,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.0},"125":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"133":{"tf":1.7320508075688772},"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"70":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"113":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}},"l":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":2,"docs":{"20":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":2.0}}}},"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"{":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":3.0}},"i":{"c":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":2.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"28":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"p":{"df":4,"docs":{"34":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":5,"docs":{"109":{"tf":1.0},"29":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"3":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"120":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"82":{"tf":1.0}}}}}}},"t":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"m":{"!":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"_":{"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":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"75":{"tf":1.0},"78":{"tf":2.6457513110645907}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"78":{"tf":3.1622776601683795},"79":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":10,"docs":{"20":{"tf":2.0},"28":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":2.449489742783178},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":4.358898943540674},"79":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"28":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":19,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"152":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.8284271247461903},"30":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"48":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"69":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"9":{"tf":1.0},"97":{"tf":2.23606797749979}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"31":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"29":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":2.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":1,"docs":{"71":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":2.0}}}}}},"df":3,"docs":{"122":{"tf":1.0},"20":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":15,"docs":{"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"28":{"tf":2.6457513110645907},"30":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":2.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"82":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{">":{"df":0,"docs":{},"が":{"df":0,"docs":{},"初":{"df":0,"docs":{},"期":{"df":0,"docs":{},"化":{"df":0,"docs":{},"さ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"た":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}}},"df":1,"docs":{"155":{"tf":1.7320508075688772}}}},"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":1,"docs":{"133":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"122":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"121":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"120":{"tf":1.0},"122":{"tf":1.7320508075688772},"31":{"tf":1.0},"70":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"125":{"tf":1.0},"42":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"78":{"tf":3.1622776601683795},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":90,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"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},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":1.0}}}},"x":{"df":1,"docs":{"29":{"tf":1.0}}}},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":2.0}}}},"df":8,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178},"77":{"tf":1.0}},"e":{"df":2,"docs":{"53":{"tf":1.0},"57":{"tf":2.23606797749979}},"l":{"df":3,"docs":{"111":{"tf":1.0},"18":{"tf":1.0},"57":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":13,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.4142135623730951},"18":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"25":{"tf":1.0},"31":{"tf":1.0},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":46,"docs":{"100":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"31":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"75":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"78":{"tf":1.4142135623730951}}},"v":{"c":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"28":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"58":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"24":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"104":{"tf":1.0},"28":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"124":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"126":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"122":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"28":{"tf":2.449489742783178},"43":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":2.449489742783178}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":2.6457513110645907}}}}}}}}},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{">":{"_":{"_":{"<":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":2.23606797749979},"3":{"tf":2.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"73":{"tf":2.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"120":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":1,"docs":{"46":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"&":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"23":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"130":{"tf":5.0990195135927845}},"e":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"20":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":27,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":3.0},"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"54":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}}}},"w":{"df":30,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"15":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.0},"48":{"tf":1.4142135623730951}},"r":{"df":2,"docs":{"28":{"tf":1.0},"44":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"89":{"tf":1.0}}},"y":{"df":0,"docs":{},"版":{"df":0,"docs":{},"の":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"を":{"df":0,"docs":{},"必":{"df":0,"docs":{},"要":{"df":0,"docs":{},"と":{"df":0,"docs":{},"し":{"df":0,"docs":{},"ま":{"df":0,"docs":{},"す":{"df":0,"docs":{},"が":{"df":0,"docs":{},"、":{"#":{"!":{"[":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":1.0}}}},"n":{"df":6,"docs":{"107":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":16,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"w":{"df":46,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"125":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.0}}}}},"df":1,"docs":{"152":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":1,"docs":{"45":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"39":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"59":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"90":{"tf":1.0}}}}}}},"k":{"(":{"_":{"df":1,"docs":{"28":{"tf":1.0}}},"df":1,"docs":{"28":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":5,"docs":{"152":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"78":{"tf":1.0}}},"l":{"d":{"df":4,"docs":{"34":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"20":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}},"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"110":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"79":{"tf":2.0},"82":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0}}},"r":{"df":10,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"113":{"tf":1.0},"28":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"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":{"60":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":4,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"87":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":19,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"48":{"tf":2.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"18":{"tf":1.0}}}},"df":2,"docs":{"57":{"tf":1.0},"66":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"3":{"tf":1.4142135623730951},"6":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"35":{"tf":1.0},"70":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"27":{"tf":1.0},"31":{"tf":3.605551275463989},"32":{"tf":2.23606797749979}},"k":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.7320508075688772}},"e":{"<":{"df":0,"docs":{},"f":{">":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}},"t":{"df":5,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"126":{"tf":1.0},"20":{"tf":1.4142135623730951},"28":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":2.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.7320508075688772}}}}},"df":10,"docs":{"10":{"tf":2.449489742783178},"105":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"18":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"24":{"tf":3.4641016151377544},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"10":{"tf":1.0},"28":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":2.449489742783178},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"69":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":1,"docs":{"65":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"18":{"tf":1.0},"48":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"70":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"73":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}},"n":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"18":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"52":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"115":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"100":{"tf":1.0},"70":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":6,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":7,"docs":{"138":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"34":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"107":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"46":{"tf":1.0},"84":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.0},"61":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"28":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"s":{"df":1,"docs":{"109":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"95":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.4142135623730951}},"s":{"df":9,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"101":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"46":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"121":{"tf":1.0},"31":{"tf":1.0}}}}},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"i":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"は":{"df":0,"docs":{},"標":{"df":0,"docs":{},"準":{"df":0,"docs":{},"出":{"df":0,"docs":{},"力":{"df":0,"docs":{},"に":{"df":0,"docs":{},"出":{"df":0,"docs":{},"力":{"df":0,"docs":{},"す":{"df":0,"docs":{},"る":{"df":0,"docs":{},"の":{"df":0,"docs":{},"で":{"df":0,"docs":{},"、":{"df":0,"docs":{},"標":{"df":0,"docs":{},"準":{"df":0,"docs":{},"エ":{"df":0,"docs":{},"ラ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"に":{"df":0,"docs":{},"出":{"df":0,"docs":{},"力":{"df":0,"docs":{},"す":{"df":0,"docs":{},"る":{"df":0,"docs":{},"た":{"df":0,"docs":{},"め":{"df":0,"docs":{},"に":{"df":0,"docs":{},"は":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"df":0,"docs":{},"を":{"df":0,"docs":{},"使":{"df":0,"docs":{},"う":{"df":0,"docs":{},"必":{"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":{"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":8,"docs":{"130":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":2.23606797749979},"81":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":2.449489742783178}}}}}},"c":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"31":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":1.0},"97":{"tf":1.7320508075688772}},"t":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":13,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.7320508075688772},"13":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"109":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"3":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}},"i":{"d":{"df":6,"docs":{"122":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"25":{"tf":1.0}}}}},"df":7,"docs":{"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.4142135623730951},"41":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.4142135623730951},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"t":{"df":6,"docs":{"104":{"tf":1.0},"18":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"#":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"66":{"tf":2.8284271247461903}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.0}}}},"b":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"5":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"13":{"tf":1.0},"143":{"tf":1.0}},"e":{"a":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"i":{"df":2,"docs":{"121":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"71":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"123":{"tf":1.0},"14":{"tf":1.0},"28":{"tf":1.4142135623730951},"58":{"tf":1.0},"82":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"109":{"tf":1.0},"20":{"tf":1.0}},"f":{"<":{"'":{"a":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"110":{"tf":1.0},"18":{"tf":1.4142135623730951},"21":{"tf":2.449489742783178},"45":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"'":{"a":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"106":{"tf":3.0},"151":{"tf":2.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"122":{"tf":1.0},"24":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":10,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"20":{"tf":1.0},"35":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":4,"docs":{"31":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"105":{"tf":1.0},"120":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"79":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"l":{"a":{"c":{"df":4,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":2.449489742783178},"45":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":2.0}}}}}}},"df":2,"docs":{"30":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"r":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"1":{"6":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"106":{"tf":1.0},"46":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":9,"docs":{"120":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0},"70":{"tf":1.0},"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"35":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}}},"t":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}}}},"df":7,"docs":{"152":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":2.23606797749979},"31":{"tf":1.7320508075688772},"41":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"28":{"tf":2.6457513110645907},"29":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.7320508075688772},"39":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.4142135623730951},"71":{"tf":1.0}},"s":{"_":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"f":{"c":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"32":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"93":{"tf":2.0}}},"o":{"a":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":5,"docs":{"120":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.0}}}},"n":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"121":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"71":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.7320508075688772},"97":{"tf":2.8284271247461903}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"122":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":12,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"121":{"tf":1.0},"127":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.7320508075688772},"7":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"112":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":123,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":3.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.6457513110645907},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":1.7320508075688772},"127":{"tf":2.23606797749979},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"18":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":3.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":2.449489742783178},"3":{"tf":1.4142135623730951},"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.6457513110645907},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":2.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":2.0},"6":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"61":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":2.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.23606797749979},"8":{"tf":3.0},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":2.6457513110645907},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.7320508075688772}}}}},"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":1,"docs":{"114":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":14,"docs":{"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":2.8284271247461903},"86":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"’":{"df":2,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951}}},"で":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"の":{"df":0,"docs":{},"ア":{"df":0,"docs":{},"ク":{"df":0,"docs":{},"テ":{"df":0,"docs":{},"ィ":{"df":0,"docs":{},"ブ":{"df":0,"docs":{},"な":{"df":0,"docs":{},"ユ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ザ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"に":{"df":0,"docs":{},"と":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"は":{"df":0,"docs":{},"、":{"6":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"コ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ド":{"df":0,"docs":{},"も":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"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":0,"docs":{},"れ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"い":{"df":0,"docs":{},"な":{"df":0,"docs":{},"い":{"df":0,"docs":{},"ビ":{"df":0,"docs":{},"ッ":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"は":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"の":{"df":0,"docs":{},"取":{"df":0,"docs":{},"り":{"df":0,"docs":{},"得":{"df":0,"docs":{},"る":{"df":0,"docs":{},"二":{"df":0,"docs":{},"つ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"値":{"df":0,"docs":{},"で":{"df":0,"docs":{},"あ":{"df":0,"docs":{},"る":{"df":0,"docs":{},"、":{"0":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"は":{"6":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"を":{"df":0,"docs":{},"使":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"い":{"df":0,"docs":{},"な":{"df":0,"docs":{},"い":{"df":0,"docs":{},"人":{"df":0,"docs":{},"に":{"df":0,"docs":{},"と":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"は":{"df":0,"docs":{},"、":{"df":0,"docs":{},"大":{"df":0,"docs":{},"き":{"df":0,"docs":{},"な":{"df":0,"docs":{},"変":{"df":0,"docs":{},"更":{"df":0,"docs":{},"が":{"df":0,"docs":{},"施":{"df":0,"docs":{},"さ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"た":{"df":0,"docs":{},"こ":{"df":0,"docs":{},"と":{"df":0,"docs":{},"を":{"df":0,"docs":{},"知":{"df":0,"docs":{},"ら":{"df":0,"docs":{},"せ":{"df":0,"docs":{},"る":{"df":0,"docs":{},"役":{"df":0,"docs":{},"割":{"df":0,"docs":{},"を":{"df":0,"docs":{},"果":{"df":0,"docs":{},"た":{"df":0,"docs":{},"し":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":2.0},"28":{"tf":2.0},"38":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"41":{"tf":1.0},"50":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}},"df":2,"docs":{"28":{"tf":2.449489742783178},"56":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":2.449489742783178},"25":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":23,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":4,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"48":{"tf":2.0},"71":{"tf":1.0}}},"n":{"df":1,"docs":{"45":{"tf":1.0}}}},"g":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"150":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":2.449489742783178},"60":{"tf":2.23606797749979},"68":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":2,"docs":{"73":{"tf":1.0},"76":{"tf":1.4142135623730951}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":11,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"122":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"<":{"'":{"_":{"df":1,"docs":{"60":{"tf":1.0}}},"a":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"95":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"31":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"p":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"87":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"28":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"121":{"tf":1.0},"31":{"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":{"41":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":2,"docs":{"69":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"f":{"3":{"2":{"df":0,"docs":{},"s":{"(":{"0":{".":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":3.1622776601683795}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"104":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}},"i":{"df":3,"docs":{"123":{"tf":1.0},"30":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.0},"30":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.7320508075688772},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.7320508075688772},"50":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"152":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"38":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"44":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"20":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"29":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"v":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"56":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}},"t":{"df":1,"docs":{"28":{"tf":1.0}}},"x":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":2.449489742783178}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"73":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"13":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"122":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"55":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"87":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"120":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":11,"docs":{"10":{"tf":1.0},"115":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"28":{"tf":1.0},"37":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"df":4,"docs":{"11":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"70":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"97":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"71":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":4,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"0":{":":{"5":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"130":{"tf":2.0}}},"4":{":":{"4":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"5":{":":{"1":{"3":{"df":2,"docs":{"29":{"tf":1.0},"55":{"tf":1.0}}},"8":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.7320508075688772}}},"6":{":":{"1":{"7":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"104":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"52":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"df":8,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"115":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"124":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"109":{"tf":1.4142135623730951},"117":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"24":{"tf":2.0},"31":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"56":{"tf":1.0},"75":{"tf":1.0}}}}}}},"i":{"c":{"df":7,"docs":{"122":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"131":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.4142135623730951},"63":{"tf":3.3166247903554},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"x":{"8":{"6":{":":{":":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"2":{"5":{"6":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"6":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"6":{"4":{":":{":":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"2":{"5":{"6":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"6":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"152":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"152":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.0},"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"s":{":":{":":{"a":{"d":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"c":{":":{":":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"a":{"df":0,"docs":{},"r":{"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"5":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"154":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.0}},"、":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"、":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"ク":{"df":0,"docs":{},"レ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"は":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"df":0,"docs":{},"の":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"う":{"df":0,"docs":{},"な":{"df":0,"docs":{},"型":{"df":0,"docs":{},"や":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"の":{"df":0,"docs":{},"機":{"df":0,"docs":{},"能":{"df":0,"docs":{},"を":{"df":0,"docs":{},"提":{"df":0,"docs":{},"供":{"df":0,"docs":{},"し":{"df":0,"docs":{},"て":{"df":0,"docs":{},"い":{"df":0,"docs":{},"ま":{"df":0,"docs":{},"し":{"df":0,"docs":{},"た":{"df":0,"docs":{},"が":{"df":0,"docs":{},"、":{"df":0,"docs":{},"そ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"代":{"df":0,"docs":{},"わ":{"df":0,"docs":{},"り":{"df":0,"docs":{},"に":{"df":0,"docs":{},"グ":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"バ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ア":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ケ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"タ":{"df":0,"docs":{},"や":{"df":0,"docs":{},"そ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"他":{"df":0,"docs":{},"の":{"df":0,"docs":{},"o":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"115":{"tf":1.0},"20":{"tf":1.0},"97":{"tf":2.23606797749979}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":14,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"118":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"69":{"tf":1.0},"71":{"tf":1.0}}},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"20":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":5,"docs":{"13":{"tf":2.449489742783178},"48":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"118":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":2,"docs":{"133":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"46":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":14,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"46":{"tf":3.605551275463989},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":3.3166247903554},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"<":{"'":{"_":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"a":{">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":5,"docs":{"109":{"tf":1.0},"127":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.0},"78":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"101":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"104":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"104":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"23":{"tf":2.23606797749979},"24":{"tf":2.0}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"28":{"tf":1.0},"30":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"18":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0},"71":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":21,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":2.23606797749979},"17":{"tf":1.0},"20":{"tf":1.7320508075688772},"32":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":2.23606797749979}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"66":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":11,"docs":{"16":{"tf":1.0},"28":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"79":{"tf":1.0},"9":{"tf":1.0},"97":{"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":{"20":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"124":{"tf":1.0}}},"df":12,"docs":{"115":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.8284271247461903},"18":{"tf":2.0},"28":{"tf":1.0},"36":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"23":{"tf":1.0}},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"18":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"u":{"8":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"19":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"103":{"tf":1.0},"11":{"tf":2.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"125":{"tf":2.8284271247461903},"126":{"tf":1.7320508075688772},"71":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}}}}}},"df":6,"docs":{"155":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":2.0},"57":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":4.358898943540674}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"39":{"tf":1.0},"41":{"tf":1.0},"73":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"29":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"]":{"df":2,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.0}}},"df":8,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.0},"20":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"97":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"20":{"tf":1.4142135623730951},"28":{"tf":1.0},"43":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{},"’":{"d":{"df":1,"docs":{"71":{"tf":1.0}}},"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"127":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}},"’":{"df":2,"docs":{"120":{"tf":1.0},"69":{"tf":1.0}}}}},"y":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"31":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":2,"docs":{"41":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"120":{"tf":1.0},"18":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"9":{"tf":1.0}}},"k":{"df":4,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"28":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"71":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"120":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0}},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"31":{"tf":3.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"51":{"tf":1.0},"66":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"31":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}}},"w":{"df":1,"docs":{"31":{"tf":1.0}}}}},"u":{"df":1,"docs":{"31":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"110":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"54":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"114":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}},"df":6,"docs":{"123":{"tf":2.6457513110645907},"125":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"106":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.4142135623730951},"70":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":2.0},"98":{"tf":1.4142135623730951}}}},"p":{"df":3,"docs":{"104":{"tf":1.0},"120":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"30":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}},"t":{">":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":24,"docs":{"10":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"150":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.449489742783178},"36":{"tf":1.7320508075688772},"37":{"tf":2.6457513110645907},"38":{"tf":3.0},"39":{"tf":3.872983346207417},"4":{"tf":1.0},"40":{"tf":2.449489742783178},"41":{"tf":2.449489742783178},"42":{"tf":2.23606797749979},"43":{"tf":3.605551275463989},"44":{"tf":3.3166247903554},"45":{"tf":1.7320508075688772},"46":{"tf":3.4641016151377544},"47":{"tf":2.0},"5":{"tf":1.0},"60":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"73":{"tf":2.0},"76":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"78":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":18,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"28":{"tf":2.449489742783178},"29":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"155":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"y":{"!":{"(":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"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":{},"y":{"!":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"!":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{")":{")":{".":{"b":{"a":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"152":{"tf":1.0}},"と":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"152":{"tf":1.0}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"、":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"、":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"138":{"tf":1.0},"141":{"tf":1.0}},"e":{".":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":5,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":14,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"71":{"tf":1.4142135623730951},"92":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":24,"docs":{"101":{"tf":2.0},"127":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":3.0},"42":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"の":{"df":0,"docs":{},"値":{"df":0,"docs":{},"を":{"df":0,"docs":{},"初":{"df":0,"docs":{},"期":{"df":0,"docs":{},"化":{"df":0,"docs":{},"し":{"df":0,"docs":{},"た":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"う":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}},"u":{".":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"1":{"2":{"8":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":2.449489742783178},"46":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"41":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":5,"docs":{"137":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"66":{"tf":2.0},"71":{"tf":2.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"59":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":2,"docs":{"40":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":3.605551275463989}},"’":{"df":1,"docs":{"69":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"121":{"tf":2.8284271247461903},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"78":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"69":{"tf":2.0},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"101":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"24":{"tf":1.0},"54":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"df":2,"docs":{"31":{"tf":2.6457513110645907},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":2.0},"99":{"tf":2.0}}}},"df":0,"docs":{}},"df":9,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"106":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"46":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":72,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":3.7416573867739413},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":3.872983346207417},"25":{"tf":1.0},"26":{"tf":2.6457513110645907},"28":{"tf":3.605551275463989},"29":{"tf":2.6457513110645907},"30":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":2.0},"40":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":2.0},"71":{"tf":3.4641016151377544},"73":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"78":{"tf":3.7416573867739413},"79":{"tf":1.0},"83":{"tf":2.23606797749979},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},"文":{"df":0,"docs":{},"の":{"df":0,"docs":{},"上":{"df":0,"docs":{},"で":{"df":0,"docs":{},"宣":{"df":0,"docs":{},"言":{"df":0,"docs":{},"さ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"い":{"df":0,"docs":{},"る":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"は":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"、":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"あ":{"df":0,"docs":{},"る":{"df":0,"docs":{},"い":{"df":0,"docs":{},"は":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":2.23606797749979},"31":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"v":{".":{"a":{"b":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{")":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"0":{".":{"0":{".":{"1":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"2":{"(":{"df":1,"docs":{"24":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"109":{"tf":1.0}}}},"l":{"df":1,"docs":{"137":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":13,"docs":{"28":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"13":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"110":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":2,"docs":{"122":{"tf":1.0},"71":{"tf":1.0}},"e":{"c":{"!":{"[":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"156":{"tf":1.7320508075688772}},"コ":{"df":0,"docs":{},"マ":{"df":0,"docs":{},"ン":{"df":0,"docs":{},"ド":{"df":0,"docs":{},"が":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":98,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":2.8284271247461903},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"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":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.8284271247461903},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"87":{"tf":2.0},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":7,"docs":{"118":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":2.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":3.1622776601683795},"83":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"121":{"tf":2.0}}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"y":{"df":17,"docs":{"101":{"tf":1.0},"122":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":2.23606797749979},"34":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"61":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":3,"docs":{"101":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"125":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":5,"docs":{"110":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}},"v":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"59":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"10":{"tf":1.0}}}},"b":{"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":{"121":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"111":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":13,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"46":{"tf":1.7320508075688772},"57":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"’":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"v":{"df":3,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"58":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}}},"’":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"'":{"a":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"125":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"w":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"'":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"123":{"tf":2.0}},"s":{"df":0,"docs":{},"上":{"df":0,"docs":{},"の":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"18":{"tf":1.0},"31":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"107":{"tf":1.0},"28":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":30,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"24":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"103":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}},"s":{"df":1,"docs":{"29":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"78":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"78":{"tf":2.0}}}},"df":0,"docs":{}},"df":31,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"28":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":5,"docs":{"123":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"71":{"tf":2.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}},"df":19,"docs":{"117":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"22":{"tf":2.0},"34":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"54":{"tf":2.449489742783178},"55":{"tf":3.0},"57":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"67":{"tf":1.0},"81":{"tf":3.605551275463989}}},"y":{"df":9,"docs":{"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":2.6457513110645907},"65":{"tf":2.6457513110645907},"67":{"tf":1.0},"81":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":11,"docs":{"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"106":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":14,"docs":{"106":{"tf":1.0},"123":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"v":{"df":4,"docs":{"20":{"tf":1.0},"75":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"71":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"’":{"d":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}},"r":{"df":2,"docs":{"70":{"tf":1.0},"82":{"tf":1.0}}},"v":{"df":4,"docs":{"26":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"z":{"df":3,"docs":{"101":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}}}}},"breadcrumbs":{"root":{"0":{".":{".":{"2":{"5":{"6":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"2":{"5":{"5":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"46":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"0":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"8":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"85":{"tf":1.0}}},"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":3,"docs":{"29":{"tf":1.0},"46":{"tf":1.0},"67":{"tf":1.7320508075688772}},"x":{"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"回":{"df":0,"docs":{},"以":{"df":0,"docs":{},"上":{"df":0,"docs":{},"」":{"df":0,"docs":{},"、":{"+":{"df":0,"docs":{},"演":{"df":0,"docs":{},"算":{"df":0,"docs":{},"子":{"df":0,"docs":{},"が":{"df":0,"docs":{},"「":{"1":{"df":0,"docs":{},"回":{"df":0,"docs":{},"以":{"df":0,"docs":{},"上":{"df":0,"docs":{},"」":{"df":0,"docs":{},"の":{"df":0,"docs":{},"繰":{"df":0,"docs":{},"り":{"df":0,"docs":{},"返":{"df":0,"docs":{},"し":{"df":0,"docs":{},"パ":{"df":0,"docs":{},"タ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ン":{"df":0,"docs":{},"を":{"df":0,"docs":{},"表":{"df":0,"docs":{},"す":{"df":0,"docs":{},"の":{"df":0,"docs":{},"と":{"df":0,"docs":{},"同":{"df":0,"docs":{},"様":{"df":0,"docs":{},"に":{"df":0,"docs":{},"、":{"?":{"df":0,"docs":{},"演":{"df":0,"docs":{},"算":{"df":0,"docs":{},"子":{"df":0,"docs":{},"は":{"0":{"df":0,"docs":{},"も":{"df":0,"docs":{},"し":{"df":0,"docs":{},"く":{"df":0,"docs":{},"は":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"1":{".":{".":{"3":{"df":1,"docs":{"66":{"tf":1.0}}},"=":{"3":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"109":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.0},"151":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.4142135623730951},"66":{"tf":1.0},"8":{"tf":1.0}},"f":{"3":{"2":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"と":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"は":{"2":{"0":{"1":{"5":{"df":0,"docs":{},"年":{"5":{"df":0,"docs":{},"月":{"df":0,"docs":{},"に":{"df":0,"docs":{},"リ":{"df":0,"docs":{},"リ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ス":{"df":0,"docs":{},"さ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"い":{"df":0,"docs":{},"て":{"df":0,"docs":{},"、":{"df":0,"docs":{},"「":{"2":{"0":{"1":{"5":{"df":1,"docs":{"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":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"以":{"df":0,"docs":{},"前":{"df":0,"docs":{},"は":{"df":0,"docs":{},"、":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}}},"1":{"0":{"df":2,"docs":{"127":{"tf":1.0},"32":{"tf":1.0}},"か":{"df":0,"docs":{},"ら":{"1":{".":{"2":{"0":{"df":0,"docs":{},"の":{"df":0,"docs":{},"間":{"df":0,"docs":{},"に":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"127":{"tf":1.0},"81":{"tf":1.0}}},"2":{"df":3,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"28":{"tf":1.0}}},"4":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"73":{"tf":1.0}}},"6":{"df":1,"docs":{"97":{"tf":1.0}}},"7":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.0}}},"8":{"df":2,"docs":{"109":{"tf":1.0},"25":{"tf":1.0}}},"9":{"df":2,"docs":{"34":{"tf":1.0},"69":{"tf":1.0}}},"df":2,"docs":{"101":{"tf":1.0},"124":{"tf":1.0}}},"2":{".":{"3":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"1":{"df":6,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"93":{"tf":1.0}}},"2":{"df":3,"docs":{"104":{"tf":1.0},"117":{"tf":1.4142135623730951},"28":{"tf":1.0}}},"3":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"82":{"tf":1.0},"92":{"tf":1.0}}},"5":{"df":5,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"26":{"tf":1.0},"70":{"tf":1.0}}},"6":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"29":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"7":{"df":2,"docs":{"43":{"tf":1.0},"71":{"tf":1.0}}},"8":{".":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":1.0},"81":{"tf":1.0}},"で":{"df":0,"docs":{},"グ":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"バ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ア":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ケ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"タ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"を":{"df":0,"docs":{},"選":{"df":0,"docs":{},"択":{"df":0,"docs":{},"で":{"df":0,"docs":{},"き":{"df":0,"docs":{},"る":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"う":{"df":0,"docs":{},"に":{"df":0,"docs":{},"な":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"か":{"df":0,"docs":{},"ら":{"df":0,"docs":{},"、":{"df":0,"docs":{},"我":{"df":0,"docs":{},"々":{"df":0,"docs":{},"は":{"df":0,"docs":{},"シ":{"df":0,"docs":{},"ス":{"df":0,"docs":{},"テ":{"df":0,"docs":{},"ム":{"df":0,"docs":{},"の":{"df":0,"docs":{},"提":{"df":0,"docs":{},"供":{"df":0,"docs":{},"す":{"df":0,"docs":{},"る":{"df":0,"docs":{},"ア":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ケ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"タ":{"df":0,"docs":{},"を":{"df":0,"docs":{},"デ":{"df":0,"docs":{},"フ":{"df":0,"docs":{},"ォ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"に":{"df":0,"docs":{},"し":{"df":0,"docs":{},"て":{"df":0,"docs":{},"、":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"3":{"0":{".":{"0":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"13":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"1":{"df":18,"docs":{"109":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"74":{"tf":1.0}}},"2":{".":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"24":{"tf":1.0},"79":{"tf":1.0}}},"3":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"151":{"tf":1.0},"152":{"tf":1.0}}},"5":{"df":1,"docs":{"150":{"tf":1.0}},"か":{"df":0,"docs":{},"ら":{"df":0,"docs":{},"こ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"ら":{"df":0,"docs":{},"の":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"レ":{"df":0,"docs":{},"イ":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"が":{"df":0,"docs":{},"こ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"ら":{"df":0,"docs":{},"の":{"df":0,"docs":{},"型":{"df":0,"docs":{},"に":{"df":0,"docs":{},"実":{"df":0,"docs":{},"装":{"df":0,"docs":{},"さ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"た":{"df":0,"docs":{},"の":{"df":0,"docs":{},"で":{"df":0,"docs":{},"、":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"6":{".":{"0":{",":{"df":0,"docs":{},"か":{"df":0,"docs":{},"ら":{"df":0,"docs":{},"、":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"の":{"df":0,"docs":{},"中":{"df":0,"docs":{},"で":{"df":0,"docs":{},"、":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"t":{">":{"df":0,"docs":{},"の":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"う":{"df":0,"docs":{},"な":{"df":0,"docs":{},"グ":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"バ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ア":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ケ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"タ":{"df":0,"docs":{},"に":{"df":0,"docs":{},"依":{"df":0,"docs":{},"存":{"df":0,"docs":{},"し":{"df":0,"docs":{},"て":{"df":0,"docs":{},"い":{"df":0,"docs":{},"る":{"df":0,"docs":{},"部":{"df":0,"docs":{},"分":{"df":0,"docs":{},"は":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"54":{"tf":1.0}}},"7":{"df":2,"docs":{"156":{"tf":1.0},"79":{"tf":1.0}}},"9":{"df":1,"docs":{"155":{"tf":1.0}}},"df":1,"docs":{"114":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"5":{"7":{"df":0,"docs":{},"x":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"98":{"tf":1.0}}},"6":{"df":2,"docs":{"107":{"tf":1.0},"120":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"9":{"3":{"df":0,"docs":{},"x":{"df":1,"docs":{"97":{"tf":1.0}}}},"6":{"df":0,"docs":{},"x":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":3,"docs":{"31":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"124":{"tf":1.0},"95":{"tf":1.0}}},"df":6,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0}}},"1":{"df":1,"docs":{"97":{"tf":1.0}}},"2":{"3":{".":{"4":{"5":{"6":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"]":{"[":{".":{".":{"]":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"67":{"tf":2.0},"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"8":{"5":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"7":{"0":{",":{"1":{"4":{"1":{",":{"1":{"8":{"3":{",":{"4":{"6":{"0":{",":{"4":{"6":{"9":{",":{"2":{"3":{"1":{",":{"7":{"3":{"1":{",":{"6":{"8":{"7":{",":{"3":{"0":{"3":{",":{"7":{"1":{"5":{",":{"8":{"8":{"4":{",":{"1":{"0":{"5":{",":{"7":{"2":{"7":{"df":1,"docs":{"67":{"tf":1.0}}},"8":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"1":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":15,"docs":{"130":{"tf":4.242640687119285},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.7320508075688772},"97":{"tf":2.0}}},"2":{",":{"3":{"df":0,"docs":{},"年":{"df":0,"docs":{},"に":{"df":0,"docs":{},"一":{"df":0,"docs":{},"度":{"df":0,"docs":{},"、":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"1":{"5":{"/":{"2":{"0":{"1":{"8":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"10":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":2.8284271247461903},"9":{"tf":1.4142135623730951}},"と":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"は":{"df":0,"docs":{},"デ":{"df":0,"docs":{},"フ":{"df":0,"docs":{},"ォ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"の":{"df":0,"docs":{},"エ":{"df":0,"docs":{},"デ":{"df":0,"docs":{},"ィ":{"df":0,"docs":{},"シ":{"df":0,"docs":{},"ョ":{"df":0,"docs":{},"ン":{"df":0,"docs":{},"な":{"df":0,"docs":{},"の":{"df":0,"docs":{},"で":{"df":0,"docs":{},"あ":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"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":0,"docs":{},"と":{"df":0,"docs":{},"も":{"df":0,"docs":{},"に":{"df":0,"docs":{},"、":{"df":0,"docs":{},"我":{"df":0,"docs":{},"々":{"df":0,"docs":{},"は":{"df":0,"docs":{},"後":{"df":0,"docs":{},"方":{"df":0,"docs":{},"互":{"df":0,"docs":{},"換":{"df":0,"docs":{},"性":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"6":{"df":1,"docs":{"82":{"tf":1.0}}},"7":{"df":0,"docs":{},"年":{"df":0,"docs":{},"末":{"df":0,"docs":{},"に":{"df":0,"docs":{},"考":{"df":0,"docs":{},"案":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}}}}}}}}}}},"8":{"df":127,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":2.6457513110645907},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"で":{"df":0,"docs":{},"は":{"df":0,"docs":{},"キ":{"df":0,"docs":{},"ー":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}}}}}}}}}},"モ":{"df":0,"docs":{},"ジ":{"df":0,"docs":{},"ュ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"シ":{"df":0,"docs":{},"ス":{"df":0,"docs":{},"テ":{"df":0,"docs":{},"ム":{"df":0,"docs":{},"に":{"df":0,"docs":{},"幾":{"df":0,"docs":{},"つ":{"df":0,"docs":{},"か":{"df":0,"docs":{},"の":{"df":0,"docs":{},"改":{"df":0,"docs":{},"善":{"df":0,"docs":{},"が":{"df":0,"docs":{},"加":{"df":0,"docs":{},"え":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"の":{"df":0,"docs":{},"セ":{"df":0,"docs":{},"ク":{"df":0,"docs":{},"シ":{"df":0,"docs":{},"ョ":{"df":0,"docs":{},"ン":{"df":0,"docs":{},"に":{"df":0,"docs":{},"含":{"df":0,"docs":{},"め":{"df":0,"docs":{},"な":{"df":0,"docs":{},"か":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"た":{"df":0,"docs":{},"理":{"df":0,"docs":{},"由":{"df":0,"docs":{},"な":{"df":0,"docs":{},"の":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"へ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"移":{"df":0,"docs":{},"行":{"df":0,"docs":{},"を":{"df":0,"docs":{},"助":{"df":0,"docs":{},"け":{"df":0,"docs":{},"る":{"df":0,"docs":{},"た":{"df":0,"docs":{},"め":{"df":0,"docs":{},"に":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"章":{"2":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"8":{"8":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"9":{"4":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"130":{"tf":1.7320508075688772}}},"5":{"6":{"df":2,"docs":{"66":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"df":13,"docs":{"117":{"tf":1.0},"130":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"57":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"79":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"3":{"2":{"df":1,"docs":{"70":{"tf":1.0}}},"4":{"0":{",":{"2":{"8":{"2":{",":{"3":{"6":{"6":{",":{"9":{"2":{"0":{",":{"9":{"3":{"8":{",":{"4":{"6":{"3":{",":{"4":{"6":{"3":{",":{"3":{"7":{"4":{",":{"6":{"0":{"7":{",":{"4":{"3":{"1":{",":{"7":{"6":{"8":{",":{"2":{"1":{"1":{",":{"4":{"5":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"5":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"130":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"48":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"66":{"tf":1.0},"81":{"tf":1.0}},"s":{"df":1,"docs":{"97":{"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":{},"に":{"2":{"0":{"2":{"1":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"4":{".":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},":":{"1":{"1":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"152":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"81":{"tf":1.0}}},"5":{"\"":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"6":{"df":1,"docs":{"97":{"tf":1.0}}},"8":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":22,"docs":{"117":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}}},"6":{"4":{"df":1,"docs":{"125":{"tf":1.0}}},"df":7,"docs":{"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0}}},"7":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"8":{"df":1,"docs":{"55":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"_":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"!":{"(":{"$":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}},"未":{"df":0,"docs":{},"定":{"df":0,"docs":{},"義":{"df":0,"docs":{},"動":{"df":0,"docs":{},"作":{"_":{"_":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":9,"docs":{"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"50":{"tf":3.0},"56":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"7":{"tf":1.4142135623730951},"73":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.4142135623730951}},"s":{"!":{"(":{"$":{"(":{"$":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"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":{}}}},"m":{"df":0,"docs":{},"m":{"2":{"5":{"6":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"6":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"b":{")":{".":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},":":{":":{"b":{":":{":":{"c":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"32":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.7320508075688772},"32":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951}}}},"v":{"df":7,"docs":{"106":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"79":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"47":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"95":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":2.0}}}},"df":0,"docs":{}}}},"d":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":15,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":2.0},"20":{"tf":1.7320508075688772},"31":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":7,"docs":{"104":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"26":{"tf":1.0},"50":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"52":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"28":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"df":1,"docs":{"109":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"a":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"42":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"1":{"6":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":4.358898943540674}}}}},"l":{"df":0,"docs":{},"o":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"120":{"tf":1.0},"122":{"tf":3.7416573867739413},"131":{"tf":1.0},"154":{"tf":2.0},"20":{"tf":2.0},"39":{"tf":1.0},"70":{"tf":1.0}},"を":{"df":0,"docs":{},"使":{"df":0,"docs":{},"う":{"#":{"!":{"[":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"]":{"df":0,"docs":{},"バ":{"df":0,"docs":{},"イ":{"df":0,"docs":{},"ナ":{"df":0,"docs":{},"リ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"サ":{"df":0,"docs":{},"ポ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"が":{"df":0,"docs":{},"安":{"df":0,"docs":{},"定":{"df":0,"docs":{},"化":{"df":0,"docs":{},"す":{"df":0,"docs":{},"る":{"df":0,"docs":{},"前":{"df":0,"docs":{},"に":{"df":0,"docs":{},"、":{"#":{"!":{"[":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":13,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"31":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"58":{"tf":1.0},"71":{"tf":1.4142135623730951},"84":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}},"n":{"df":2,"docs":{"106":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"29":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":3,"docs":{"24":{"tf":1.0},"44":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"47":{"tf":2.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"20":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"97":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"114":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"38":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0}}},"df":3,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"123":{"tf":1.0},"20":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":2.0},"102":{"tf":1.0},"18":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"38":{"tf":1.0}},"s":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"[":{"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"138":{"tf":1.0},"140":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":2.23606797749979}}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}}},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"r":{"#":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{":":{":":{"<":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"1":{"6":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{":":{":":{"<":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"1":{"6":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"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":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.7320508075688772}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"41":{"tf":1.0},"46":{"tf":3.7416573867739413},"61":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":1.0},"63":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":2.449489742783178},"33":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.4142135623730951},"70":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"20":{"tf":2.0},"57":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"df":1,"docs":{"20":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"24":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"2":{"df":1,"docs":{"71":{"tf":2.0}}},"df":1,"docs":{"71":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.7320508075688772},"33":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"30":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},":":{":":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"105":{"tf":2.23606797749979},"134":{"tf":1.0},"139":{"tf":1.0},"148":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"63":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"i":{"c":{"df":2,"docs":{"71":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":3,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":2.0}}}},"df":6,"docs":{"48":{"tf":1.0},"59":{"tf":2.6457513110645907},"61":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"71":{"tf":2.23606797749979},"79":{"tf":1.4142135623730951}},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"df":3,"docs":{"31":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"109":{"tf":1.4142135623730951},"20":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"20":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"123":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"70":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"97":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"100":{"tf":2.6457513110645907},"124":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":2.449489742783178}}}}},"d":{"df":5,"docs":{"42":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"t":{"df":10,"docs":{"125":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":2.23606797749979},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"109":{"tf":1.0}}},"df":8,"docs":{"108":{"tf":1.0},"109":{"tf":3.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"40":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"110":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951}}}}}}}},"l":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}}},"r":{"df":1,"docs":{"63":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"54":{"tf":2.8284271247461903},"55":{"tf":3.3166247903554},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"81":{"tf":2.23606797749979},"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"13":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":2.23606797749979}}}}},"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"5":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":6,"docs":{"150":{"tf":2.449489742783178},"152":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"f":{"df":1,"docs":{"150":{"tf":1.0}},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"3":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":1.0},"107":{"tf":1.0}}}},"df":2,"docs":{"34":{"tf":2.449489742783178},"38":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"120":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"105":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":16,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":2.0},"126":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"93":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"c":{"1":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"28":{"tf":2.23606797749979},"30":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"41":{"tf":1.7320508075688772}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":9,"docs":{"105":{"tf":1.7320508075688772},"11":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"151":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":29,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":3.0},"102":{"tf":1.7320508075688772},"103":{"tf":2.6457513110645907},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"106":{"tf":3.0},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"151":{"tf":2.0},"156":{"tf":2.23606797749979},"20":{"tf":2.0},"3":{"tf":1.4142135623730951},"5":{"tf":2.0},"7":{"tf":3.605551275463989},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"96":{"tf":2.23606797749979},"97":{"tf":3.605551275463989},"98":{"tf":2.6457513110645907},"99":{"tf":3.1622776601683795}},"’":{"df":2,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951}}},"は":{".":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"38":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"17":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"40":{"tf":1.0},"50":{"tf":1.0}}}},"df":1,"docs":{"3":{"tf":1.0}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"s":{"df":4,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"127":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"df":8,"docs":{"118":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"g":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"20":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"109":{"tf":1.0},"20":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":3.605551275463989},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"106":{"tf":1.0},"125":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"41":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"22":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"r":{"df":3,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"59":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"100":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":2.449489742783178}}},"y":{"'":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"109":{"tf":1.0}},"r":{"df":2,"docs":{"35":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.6457513110645907},"56":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":33,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"124":{"tf":1.0},"127":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":2.23606797749979},"28":{"tf":2.449489742783178},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"94":{"tf":1.0},"97":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"110":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"52":{"tf":1.0},"69":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"29":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":19,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.8284271247461903},"13":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"66":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"78":{"tf":2.8284271247461903},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":3.7416573867739413},"83":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"97":{"tf":3.0}},"e":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"120":{"tf":1.0},"24":{"tf":1.0}}},"x":{"df":8,"docs":{"104":{"tf":1.4142135623730951},"24":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"122":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.8284271247461903},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.6457513110645907}}},"s":{"df":1,"docs":{"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"13":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"59":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.7320508075688772},"70":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"18":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"18":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"117":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":3.4641016151377544}}}}},"df":16,"docs":{"135":{"tf":3.4641016151377544},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":2.449489742783178},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":2.0},"46":{"tf":3.0},"63":{"tf":2.8284271247461903}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"103":{"tf":1.7320508075688772},"109":{"tf":1.0},"115":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.7320508075688772},"60":{"tf":1.0},"71":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"48":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"59":{"tf":2.0},"81":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"31":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"122":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":6,"docs":{"109":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}},"ク":{"df":0,"docs":{},"レ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"は":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"や":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"の":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"う":{"df":0,"docs":{},"な":{"df":0,"docs":{},"主":{"df":0,"docs":{},"要":{"df":0,"docs":{},"機":{"df":0,"docs":{},"能":{"df":0,"docs":{},"を":{"df":0,"docs":{},"提":{"df":0,"docs":{},"供":{"df":0,"docs":{},"し":{"df":0,"docs":{},"、":{"df":0,"docs":{},"何":{"df":0,"docs":{},"も":{"df":0,"docs":{},"前":{"df":0,"docs":{},"提":{"df":0,"docs":{},"条":{"df":0,"docs":{},"件":{"df":0,"docs":{},"が":{"df":0,"docs":{},"な":{"df":0,"docs":{},"か":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"た":{"df":0,"docs":{},"の":{"df":0,"docs":{},"で":{"#":{"!":{"[":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"31":{"tf":1.0},"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"20":{"tf":1.0}}},":":{":":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"!":{"(":{"$":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"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":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":21,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"127":{"tf":2.23606797749979},"151":{"tf":1.0},"154":{"tf":1.0},"18":{"tf":2.23606797749979},"20":{"tf":5.196152422706632},"21":{"tf":3.3166247903554},"22":{"tf":3.0},"24":{"tf":2.6457513110645907},"25":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":2.449489742783178},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":3.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":2.449489742783178},"107":{"tf":2.23606797749979},"151":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"117":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"44":{"tf":1.0},"95":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"122":{"tf":1.0},"70":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":2.0},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"114":{"tf":1.0}}}},"t":{"a":{"df":11,"docs":{"28":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"g":{"!":{"(":{"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":2.449489742783178}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"29":{"tf":1.4142135623730951},"55":{"tf":1.0},"73":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.0},"34":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":19,"docs":{"100":{"tf":2.6457513110645907},"106":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"18":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":2.8284271247461903},"106":{"tf":1.0},"107":{"tf":3.0},"151":{"tf":1.0},"3":{"tf":1.4142135623730951},"32":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"105":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":2.8284271247461903}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"76":{"tf":1.7320508075688772}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"68":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"46":{"tf":1.0}}}},"r":{"df":2,"docs":{"122":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":18,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"103":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"123":{"tf":1.0},"24":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"11":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"79":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"31":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.449489742783178},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"df":3,"docs":{"20":{"tf":1.4142135623730951},"28":{"tf":1.0},"32":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.0},"31":{"tf":1.4142135623730951},"39":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"71":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"31":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"114":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"60":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"31":{"tf":1.7320508075688772},"60":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":1.0},"39":{"tf":1.7320508075688772}}}},"df":6,"docs":{"10":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"81":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"df":1,"docs":{"28":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"110":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"s":{"df":7,"docs":{"106":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":6,"docs":{"122":{"tf":1.0},"24":{"tf":1.0},"48":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"28":{"tf":2.0},"35":{"tf":1.7320508075688772},"55":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":3.4641016151377544},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.7320508075688772},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979},"79":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"キ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"が":{"df":0,"docs":{},"な":{"df":0,"docs":{},"け":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"ば":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"51":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}},"s":{",":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":2.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"31":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"120":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":2.6457513110645907}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"118":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"o":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"18":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"132":{"tf":1.0},"138":{"tf":1.0},"24":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"130":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"は":{"df":0,"docs":{},"常":{"df":0,"docs":{},"に":{"(":{")":{"df":0,"docs":{},"を":{"df":0,"docs":{},"返":{"df":0,"docs":{},"し":{"df":0,"docs":{},"ま":{"df":0,"docs":{},"す":{"df":0,"docs":{},"が":{"df":0,"docs":{},"、":{"d":{"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"130":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"28":{"tf":2.0},"29":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"e":{"0":{"0":{"0":{"4":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"7":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"2":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":18,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":3.7416573867739413},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"32":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"78":{"tf":3.3166247903554},"80":{"tf":1.0},"81":{"tf":3.872983346207417}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"28":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"123":{"tf":1.0},"42":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"48":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"24":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":3.605551275463989},"106":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":2.23606797749979},"117":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"31":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":2.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"41":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"n":{"df":3,"docs":{"109":{"tf":1.0},"39":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"20":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"31":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"46":{"tf":1.0},"70":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"28":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"28":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"=":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":12,"docs":{"10":{"tf":1.0},"120":{"tf":1.0},"154":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":3.4641016151377544},"21":{"tf":1.7320508075688772},"22":{"tf":2.23606797749979},"24":{"tf":2.23606797749979},"25":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"r":{"a":{"df":4,"docs":{"46":{"tf":1.4142135623730951},"70":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"f":{"(":{"df":0,"docs":{},"u":{"df":1,"docs":{"69":{"tf":1.0}}}},".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"m":{"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":{}}}},"1":{"df":1,"docs":{"69":{"tf":2.23606797749979}}},"2":{"df":1,"docs":{"69":{"tf":2.23606797749979}}},"3":{"2":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"46":{"tf":2.8284271247461903},"69":{"tf":1.7320508075688772}},"s":{"(":{"2":{".":{"0":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"(":{"4":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"116":{"tf":1.0},"117":{"tf":2.449489742783178},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"56":{"tf":1.0},"66":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}},"s":{"df":2,"docs":{"130":{"tf":1.7320508075688772},"155":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"40":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"110":{"tf":1.0},"55":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"71":{"tf":2.449489742783178},"82":{"tf":2.0},"97":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":7,"docs":{"150":{"tf":1.0},"20":{"tf":1.7320508075688772},"28":{"tf":2.23606797749979},"29":{"tf":1.7320508075688772},"41":{"tf":2.0},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":2.449489742783178}}}}},"w":{"df":14,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"11":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":2.6457513110645907},"64":{"tf":1.0},"65":{"tf":2.23606797749979},"69":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"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":7,"docs":{"104":{"tf":2.449489742783178},"106":{"tf":2.0},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"31":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.0},"28":{"tf":1.0},"59":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"d":{"df":6,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"78":{"tf":1.0}},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"135":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772}}}},"x":{"df":4,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":2.0},"7":{"tf":2.8284271247461903}},"に":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"こ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"う":{"df":0,"docs":{},"な":{"df":0,"docs":{},"イ":{"df":0,"docs":{},"デ":{"df":0,"docs":{},"ィ":{"df":0,"docs":{},"オ":{"df":0,"docs":{},"ム":{"df":0,"docs":{},"の":{"df":0,"docs":{},"変":{"df":0,"docs":{},"更":{"df":0,"docs":{},"も":{"df":0,"docs":{},"、":{"2":{"0":{"1":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"20":{"tf":1.7320508075688772},"71":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":2.449489742783178}}}},"df":0,"docs":{},"w":{"df":4,"docs":{"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"0":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"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":3,"docs":{"30":{"tf":1.0},"58":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"58":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"n":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"150":{"tf":2.449489742783178}},"と":{"df":0,"docs":{},"い":{"df":0,"docs":{},"う":{"df":0,"docs":{},"新":{"df":0,"docs":{},"し":{"df":0,"docs":{},"い":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"レ":{"df":0,"docs":{},"イ":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"を":{"df":0,"docs":{},"定":{"df":0,"docs":{},"義":{"df":0,"docs":{},"し":{"df":0,"docs":{},"、":{"df":0,"docs":{},"全":{"df":0,"docs":{},"て":{"df":0,"docs":{},"の":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"df":54,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":2.0},"133":{"tf":1.0},"135":{"tf":2.6457513110645907},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":2.449489742783178},"150":{"tf":2.0},"152":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":2.449489742783178},"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":2.8284271247461903},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":2.23606797749979},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":1.0}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"150":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"か":{"df":0,"docs":{},"ら":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"で":{"df":0,"docs":{},"利":{"df":0,"docs":{},"用":{"df":0,"docs":{},"で":{"df":0,"docs":{},"き":{"df":0,"docs":{},"る":{"df":0,"docs":{},"表":{"df":0,"docs":{},"記":{"df":0,"docs":{},"方":{"df":0,"docs":{},"が":{"df":0,"docs":{},"増":{"df":0,"docs":{},"え":{"df":0,"docs":{},"る":{"df":0,"docs":{},"に":{"df":0,"docs":{},"従":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"、":{"df":0,"docs":{},"標":{"df":0,"docs":{},"準":{"df":0,"docs":{},"ラ":{"df":0,"docs":{},"イ":{"df":0,"docs":{},"ブ":{"df":0,"docs":{},"ラ":{"df":0,"docs":{},"リ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"機":{"df":0,"docs":{},"能":{"df":0,"docs":{},"が":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"に":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"り":{"df":0,"docs":{},"コ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ド":{"df":0,"docs":{},"を":{"df":0,"docs":{},"「":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"の":{"df":0,"docs":{},"中":{"df":0,"docs":{},"で":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"を":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"10":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.0},"29":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.4142135623730951},"89":{"tf":1.0},"95":{"tf":1.0}}}}}},"o":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"4":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}},"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"145":{"tf":1.0}}}},")":{"?":{".":{"b":{"a":{"df":0,"docs":{},"r":{"(":{")":{"?":{".":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"71":{"tf":1.0}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}},".":{"df":0,"docs":{},"r":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":2.23606797749979}},"s":{":":{"3":{":":{"1":{"4":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"81":{"tf":1.0}}},"4":{":":{"5":{"df":1,"docs":{"81":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{">":{"(":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"'":{"_":{"df":1,"docs":{"59":{"tf":1.0}}},"a":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"\\":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"2":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":34,"docs":{"105":{"tf":2.0},"117":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":2.0},"37":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772}},"は":{"df":0,"docs":{},"タ":{"df":0,"docs":{},"プ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"の":{"df":0,"docs":{},"値":{"df":0,"docs":{},"を":{"df":0,"docs":{},"x":{"df":0,"docs":{},"と":{"df":0,"docs":{},"i":{"df":1,"docs":{"145":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"g":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":2.0}},"s":{"!":{"(":{"$":{"(":{"$":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"81":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"df":8,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"25":{"tf":1.7320508075688772},"31":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":3,"docs":{"113":{"tf":1.0},"13":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{">":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.4142135623730951}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":3,"docs":{"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"24":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"43":{"tf":1.0}}},"2":{"df":1,"docs":{"43":{"tf":1.0}}},"df":17,"docs":{"10":{"tf":1.7320508075688772},"115":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"22":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"46":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"84":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"44":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"103":{"tf":2.23606797749979},"115":{"tf":1.0},"153":{"tf":2.0},"20":{"tf":2.0},"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"121":{"tf":1.4142135623730951},"28":{"tf":1.0},"93":{"tf":1.0}}}}},"c":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"115":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":3,"docs":{"100":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":9,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"65":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":3,"docs":{"122":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"122":{"tf":1.7320508075688772},"131":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":2,"docs":{"122":{"tf":2.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":7,"docs":{"123":{"tf":1.0},"18":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0}}},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":3,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}},"t":{"(":{"&":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"26":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"98":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"i":{"d":{"df":15,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"120":{"tf":1.0}},"l":{"df":11,"docs":{"122":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.8284271247461903},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"23":{"tf":1.0},"28":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"13":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"54":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}},"r":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"p":{"df":7,"docs":{"29":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"78":{"tf":2.23606797749979}}}}}},"n":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"121":{"tf":1.0},"18":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.7320508075688772}}},"df":22,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"44":{"tf":1.0},"48":{"tf":2.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.449489742783178},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"96":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":1,"docs":{"71":{"tf":1.0}}}}},"y":{"df":2,"docs":{"41":{"tf":1.0},"48":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"82":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"l":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"115":{"tf":1.0},"71":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"29":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"d":{"df":0,"docs":{},"o":{"c":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"i":{"'":{"df":0,"docs":{},"m":{"df":3,"docs":{"114":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0}}},"v":{"df":1,"docs":{"78":{"tf":1.0}}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"120":{"tf":1.0},"28":{"tf":1.0}}}},"1":{"2":{"8":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":18,"docs":{"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"30":{"tf":2.0},"39":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"d":{"df":2,"docs":{"46":{"tf":2.23606797749979},"93":{"tf":2.23606797749979}},"e":{"a":{"df":4,"docs":{"118":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"13":{"tf":2.8284271247461903},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979}}}}},"p":{"df":0,"docs":{},"l":{"<":{"'":{"a":{"df":3,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"30":{"tf":1.0}},"f":{"df":1,"docs":{"150":{"tf":1.0}}},"i":{"df":1,"docs":{"60":{"tf":1.0}}},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":18,"docs":{"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.449489742783178},"38":{"tf":2.23606797749979},"39":{"tf":2.449489742783178},"40":{"tf":2.23606797749979},"41":{"tf":2.0},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.0},"46":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"68":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"118":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":1,"docs":{"61":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":8,"docs":{"100":{"tf":1.0},"20":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"38":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":15,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"9":{"tf":1.0},"96":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":9,"docs":{"114":{"tf":1.0},"127":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"9":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.449489742783178}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"151":{"tf":1.0},"31":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"11":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"70":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":11,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.7320508075688772}},"i":{"df":4,"docs":{"123":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"28":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"104":{"tf":1.7320508075688772},"127":{"tf":1.0},"21":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"78":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"121":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":3.3166247903554},"86":{"tf":2.0},"88":{"tf":1.7320508075688772},"89":{"tf":3.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.23606797749979}},"l":{"'":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":20,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"121":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"76":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":2.0}},"r":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"n":{"d":{"df":3,"docs":{"105":{"tf":1.0},"127":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"90":{"tf":1.0}}}}},"f":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"20":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"127":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{"7":{"8":{"7":{"8":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"123":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"27":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"28":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"s":{"_":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}},"e":{"d":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"2":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"30":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"'":{"df":16,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.7320508075688772},"123":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"'":{"a":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":6,"docs":{"28":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"111":{"tf":1.0},"20":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"100":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"122":{"tf":1.4142135623730951},"131":{"tf":3.1622776601683795}},"は":{"df":0,"docs":{},"特":{"df":0,"docs":{},"定":{"df":0,"docs":{},"の":{"df":0,"docs":{},"プ":{"df":0,"docs":{},"ラ":{"df":0,"docs":{},"ッ":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"フ":{"df":0,"docs":{},"ォ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ム":{"df":0,"docs":{},"で":{"df":0,"docs":{},"の":{"df":0,"docs":{},"み":{"df":0,"docs":{},"デ":{"df":0,"docs":{},"フ":{"df":0,"docs":{},"ォ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"な":{"df":0,"docs":{},"の":{"df":0,"docs":{},"で":{"df":0,"docs":{},"、":{"df":0,"docs":{},"そ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"が":{"df":0,"docs":{},"常":{"df":0,"docs":{},"に":{"df":0,"docs":{},"デ":{"df":0,"docs":{},"フ":{"df":0,"docs":{},"ォ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"だ":{"df":0,"docs":{},"と":{"df":0,"docs":{},"言":{"df":0,"docs":{},"う":{"df":0,"docs":{},"の":{"df":0,"docs":{},"は":{"df":0,"docs":{},"や":{"df":0,"docs":{},"や":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"を":{"df":0,"docs":{},"使":{"df":0,"docs":{},"い":{"df":0,"docs":{},"続":{"df":0,"docs":{},"け":{"df":0,"docs":{},"た":{"df":0,"docs":{},"い":{"df":0,"docs":{},"の":{"df":0,"docs":{},"で":{"df":0,"docs":{},"あ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"ば":{"df":0,"docs":{},"、":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"う":{"df":0,"docs":{},"と":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"の":{"df":0,"docs":{},"す":{"df":0,"docs":{},"べ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"の":{"df":0,"docs":{},"バ":{"df":0,"docs":{},"イ":{"df":0,"docs":{},"ナ":{"df":0,"docs":{},"リ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"が":{"3":{"0":{"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"b":{"df":2,"docs":{"109":{"tf":1.0},"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"y":{"df":3,"docs":{"122":{"tf":1.0},"31":{"tf":1.0},"65":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"10":{"tf":2.23606797749979},"13":{"tf":2.23606797749979},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"n":{"d":{"df":7,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"109":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"121":{"tf":1.0},"51":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"111":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"109":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"28":{"tf":2.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.0},"57":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"78":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"99":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"31":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"113":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"73":{"tf":1.0}}}},"v":{"df":1,"docs":{"59":{"tf":1.0}}}},"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"19":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}},"df":4,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"71":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"105":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"78":{"tf":2.6457513110645907}}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"23":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"の":{"df":0,"docs":{},"先":{"df":0,"docs":{},"頭":{"df":0,"docs":{},"に":{"df":0,"docs":{},"入":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"、":{"#":{"[":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":3.0}},"e":{"'":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"127":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"100":{"tf":2.23606797749979},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"14":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":12,"docs":{"109":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":2.449489742783178},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":2.6457513110645907},"60":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":2.8284271247461903}}}}}},"t":{"df":5,"docs":{"23":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"69":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":7,"docs":{"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}},"k":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"t":{"df":2,"docs":{"10":{"tf":1.0},"94":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"x":{"df":5,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.0},"125":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"133":{"tf":1.7320508075688772},"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"70":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"113":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}},"l":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":2.0},"24":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"t":{"df":2,"docs":{"20":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":2.0}}}},"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"{":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":3.0}},"i":{"c":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":2.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"28":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"p":{"df":4,"docs":{"34":{"tf":2.8284271247461903},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}}},"t":{"df":5,"docs":{"109":{"tf":1.0},"29":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"3":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"120":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"82":{"tf":1.0}}}}}}},"t":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"m":{"!":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"_":{"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":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"75":{"tf":1.0},"78":{"tf":2.6457513110645907}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"75":{"tf":2.0},"78":{"tf":3.1622776601683795},"79":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":11,"docs":{"20":{"tf":2.0},"28":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":2.23606797749979},"73":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":3.0},"76":{"tf":2.449489742783178},"77":{"tf":2.0},"78":{"tf":4.69041575982343},"79":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"28":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":19,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"152":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":3.1622776601683795},"30":{"tf":2.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"48":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"69":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"9":{"tf":1.0},"97":{"tf":2.23606797749979}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"31":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"29":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":2.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":1,"docs":{"71":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":2.0}}}}}},"df":3,"docs":{"122":{"tf":1.0},"20":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":15,"docs":{"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"28":{"tf":2.6457513110645907},"30":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":2.6457513110645907},"57":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"82":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{">":{"df":0,"docs":{},"が":{"df":0,"docs":{},"初":{"df":0,"docs":{},"期":{"df":0,"docs":{},"化":{"df":0,"docs":{},"さ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"た":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}}},"df":1,"docs":{"155":{"tf":1.7320508075688772}}}},"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":1,"docs":{"133":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"122":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"121":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"120":{"tf":1.0},"122":{"tf":1.7320508075688772},"31":{"tf":1.0},"70":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"125":{"tf":1.0},"42":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"78":{"tf":3.1622776601683795},"80":{"tf":1.0},"81":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":90,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"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},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":1.0}}}},"x":{"df":1,"docs":{"29":{"tf":1.0}}}},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":2.23606797749979}}}},"df":8,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178},"77":{"tf":1.0}},"e":{"df":2,"docs":{"53":{"tf":1.0},"57":{"tf":2.23606797749979}},"l":{"df":3,"docs":{"111":{"tf":1.0},"18":{"tf":1.0},"57":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"25":{"tf":1.7320508075688772},"28":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":20,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":46,"docs":{"100":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"44":{"tf":2.0},"45":{"tf":2.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"31":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"75":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"78":{"tf":1.4142135623730951}}},"v":{"c":{"df":1,"docs":{"123":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"28":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"58":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"24":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"104":{"tf":1.0},"28":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"124":{"tf":2.0},"125":{"tf":2.8284271247461903},"126":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"122":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"28":{"tf":2.449489742783178},"43":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":2.449489742783178}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":2.6457513110645907}}}}}}}}},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{">":{"_":{"_":{"<":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":2.23606797749979},"3":{"tf":2.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"73":{"tf":2.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"120":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":1,"docs":{"46":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"&":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"23":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"130":{"tf":5.0990195135927845}},"e":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"20":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":27,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":3.0},"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":2.0},"61":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"54":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}}}},"w":{"df":30,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":1.0},"109":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"15":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.0},"48":{"tf":1.4142135623730951}},"r":{"df":2,"docs":{"28":{"tf":1.0},"44":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"89":{"tf":1.0}}},"y":{"df":0,"docs":{},"版":{"df":0,"docs":{},"の":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"を":{"df":0,"docs":{},"必":{"df":0,"docs":{},"要":{"df":0,"docs":{},"と":{"df":0,"docs":{},"し":{"df":0,"docs":{},"ま":{"df":0,"docs":{},"す":{"df":0,"docs":{},"が":{"df":0,"docs":{},"、":{"#":{"!":{"[":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"28":{"tf":1.0}}}},"n":{"df":6,"docs":{"107":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"w":{"df":46,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"125":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.0}}}}},"df":1,"docs":{"152":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":1,"docs":{"45":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"43":{"tf":2.0},"44":{"tf":1.7320508075688772},"45":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"39":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"59":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"90":{"tf":1.0}}}}}}},"k":{"(":{"_":{"df":1,"docs":{"28":{"tf":1.0}}},"df":1,"docs":{"28":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":5,"docs":{"152":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"78":{"tf":1.0}}},"l":{"d":{"df":4,"docs":{"34":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"20":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}},"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"110":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"79":{"tf":2.449489742783178},"82":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0}}},"r":{"df":10,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"113":{"tf":1.0},"28":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"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":{"60":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":4,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"87":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":19,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"48":{"tf":2.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"18":{"tf":1.0}}}},"df":2,"docs":{"57":{"tf":1.0},"66":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"53":{"tf":2.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}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"103":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"3":{"tf":1.4142135623730951},"6":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"35":{"tf":1.0},"70":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":4.0},"32":{"tf":2.8284271247461903}},"k":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.7320508075688772}},"e":{"<":{"df":0,"docs":{},"f":{">":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}},"t":{"df":5,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"126":{"tf":1.0},"20":{"tf":1.4142135623730951},"28":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":2.449489742783178}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.7320508075688772}}}}},"df":14,"docs":{"10":{"tf":2.449489742783178},"105":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"18":{"tf":2.6457513110645907},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":3.7416573867739413},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":11,"docs":{"10":{"tf":1.0},"28":{"tf":1.4142135623730951},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":2.8284271247461903},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"69":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":1,"docs":{"65":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"18":{"tf":1.0},"48":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"70":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"73":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}},"n":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"18":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"52":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"115":{"tf":1.7320508075688772},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"100":{"tf":1.0},"70":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":6,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":7,"docs":{"138":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"34":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"107":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"46":{"tf":1.0},"84":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.0},"61":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"28":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"s":{"df":1,"docs":{"109":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"95":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"81":{"tf":1.4142135623730951}},"s":{"df":9,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"101":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":1,"docs":{"56":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"46":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"121":{"tf":1.0},"31":{"tf":1.0}}}}},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"i":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"は":{"df":0,"docs":{},"標":{"df":0,"docs":{},"準":{"df":0,"docs":{},"出":{"df":0,"docs":{},"力":{"df":0,"docs":{},"に":{"df":0,"docs":{},"出":{"df":0,"docs":{},"力":{"df":0,"docs":{},"す":{"df":0,"docs":{},"る":{"df":0,"docs":{},"の":{"df":0,"docs":{},"で":{"df":0,"docs":{},"、":{"df":0,"docs":{},"標":{"df":0,"docs":{},"準":{"df":0,"docs":{},"エ":{"df":0,"docs":{},"ラ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"に":{"df":0,"docs":{},"出":{"df":0,"docs":{},"力":{"df":0,"docs":{},"す":{"df":0,"docs":{},"る":{"df":0,"docs":{},"た":{"df":0,"docs":{},"め":{"df":0,"docs":{},"に":{"df":0,"docs":{},"は":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"df":0,"docs":{},"を":{"df":0,"docs":{},"使":{"df":0,"docs":{},"う":{"df":0,"docs":{},"必":{"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":{"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":8,"docs":{"130":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":2.23606797749979},"81":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":2.449489742783178}}}}}},"c":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"31":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"81":{"tf":1.0},"97":{"tf":1.7320508075688772}},"t":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":13,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.7320508075688772},"13":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":2.0},"109":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"3":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}},"i":{"d":{"df":6,"docs":{"122":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"25":{"tf":1.0}}}}},"df":7,"docs":{"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.4142135623730951},"41":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.4142135623730951},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"t":{"df":6,"docs":{"104":{"tf":1.0},"18":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"#":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"66":{"tf":3.1622776601683795}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":5,"docs":{"13":{"tf":2.23606797749979},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}},"b":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"5":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"13":{"tf":1.0},"143":{"tf":1.0}},"e":{"a":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}},"i":{"df":2,"docs":{"121":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"71":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"123":{"tf":1.0},"14":{"tf":1.0},"28":{"tf":1.4142135623730951},"58":{"tf":1.0},"82":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"109":{"tf":1.0},"20":{"tf":1.0}},"f":{"<":{"'":{"a":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"110":{"tf":1.0},"18":{"tf":1.4142135623730951},"21":{"tf":2.6457513110645907},"45":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"'":{"a":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"106":{"tf":3.3166247903554},"151":{"tf":2.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"122":{"tf":1.0},"24":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":10,"docs":{"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"20":{"tf":1.0},"35":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":4,"docs":{"31":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":9,"docs":{"105":{"tf":1.0},"120":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"79":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"79":{"tf":2.0}}}}}},"l":{"a":{"c":{"df":4,"docs":{"105":{"tf":2.23606797749979},"106":{"tf":2.8284271247461903},"45":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":2.0}}}}}}},"df":2,"docs":{"30":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"r":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"1":{"6":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"106":{"tf":1.0},"46":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":9,"docs":{"120":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0},"70":{"tf":1.0},"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"35":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}}},"t":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}}}},"df":7,"docs":{"152":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":2.23606797749979},"31":{"tf":1.7320508075688772},"41":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"28":{"tf":2.6457513110645907},"29":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":2.6457513110645907},"40":{"tf":1.7320508075688772},"41":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"59":{"tf":1.4142135623730951},"71":{"tf":1.0}},"s":{"_":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"f":{"c":{"df":6,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"32":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"93":{"tf":2.23606797749979}}},"o":{"a":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":5,"docs":{"120":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.0}}}},"n":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"121":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"71":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.7320508075688772},"97":{"tf":2.8284271247461903}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"122":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":12,"docs":{"101":{"tf":3.0},"102":{"tf":2.0},"121":{"tf":1.0},"127":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.7320508075688772},"7":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"112":{"tf":1.7320508075688772},"116":{"tf":2.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":156,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":3.1622776601683795},"11":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":2.6457513110645907},"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.23606797749979},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.8284271247461903},"122":{"tf":2.449489742783178},"123":{"tf":2.449489742783178},"124":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":2.449489742783178},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"24":{"tf":3.1622776601683795},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":2.449489742783178},"29":{"tf":2.6457513110645907},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":2.6457513110645907},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907},"59":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"7":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":2.449489742783178},"8":{"tf":3.3166247903554},"80":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.6457513110645907},"85":{"tf":2.449489742783178},"86":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":3.0},"90":{"tf":2.0},"91":{"tf":2.449489742783178},"92":{"tf":1.7320508075688772},"93":{"tf":2.23606797749979},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":2.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":1,"docs":{"114":{"tf":2.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":3.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.8284271247461903},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"’":{"df":2,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951}}},"で":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"の":{"df":0,"docs":{},"ア":{"df":0,"docs":{},"ク":{"df":0,"docs":{},"テ":{"df":0,"docs":{},"ィ":{"df":0,"docs":{},"ブ":{"df":0,"docs":{},"な":{"df":0,"docs":{},"ユ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ザ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"に":{"df":0,"docs":{},"と":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"は":{"df":0,"docs":{},"、":{"6":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"コ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ド":{"df":0,"docs":{},"も":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"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":0,"docs":{},"れ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"い":{"df":0,"docs":{},"な":{"df":0,"docs":{},"い":{"df":0,"docs":{},"ビ":{"df":0,"docs":{},"ッ":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"は":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"の":{"df":0,"docs":{},"取":{"df":0,"docs":{},"り":{"df":0,"docs":{},"得":{"df":0,"docs":{},"る":{"df":0,"docs":{},"二":{"df":0,"docs":{},"つ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"値":{"df":0,"docs":{},"で":{"df":0,"docs":{},"あ":{"df":0,"docs":{},"る":{"df":0,"docs":{},"、":{"0":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}},"は":{"6":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"を":{"df":0,"docs":{},"使":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"い":{"df":0,"docs":{},"な":{"df":0,"docs":{},"い":{"df":0,"docs":{},"人":{"df":0,"docs":{},"に":{"df":0,"docs":{},"と":{"df":0,"docs":{},"っ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"は":{"df":0,"docs":{},"、":{"df":0,"docs":{},"大":{"df":0,"docs":{},"き":{"df":0,"docs":{},"な":{"df":0,"docs":{},"変":{"df":0,"docs":{},"更":{"df":0,"docs":{},"が":{"df":0,"docs":{},"施":{"df":0,"docs":{},"さ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"た":{"df":0,"docs":{},"こ":{"df":0,"docs":{},"と":{"df":0,"docs":{},"を":{"df":0,"docs":{},"知":{"df":0,"docs":{},"ら":{"df":0,"docs":{},"せ":{"df":0,"docs":{},"る":{"df":0,"docs":{},"役":{"df":0,"docs":{},"割":{"df":0,"docs":{},"を":{"df":0,"docs":{},"果":{"df":0,"docs":{},"た":{"df":0,"docs":{},"し":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":2.0},"28":{"tf":2.0},"38":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"41":{"tf":1.0},"50":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}},"df":2,"docs":{"28":{"tf":2.449489742783178},"56":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":2.449489742783178},"25":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":23,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":4,"docs":{"18":{"tf":1.0},"24":{"tf":1.0},"48":{"tf":2.0},"71":{"tf":1.0}}},"n":{"df":1,"docs":{"45":{"tf":1.0}}}},"g":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"150":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":2.449489742783178},"60":{"tf":2.23606797749979},"68":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":2,"docs":{"73":{"tf":1.0},"76":{"tf":1.4142135623730951}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":11,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"122":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"<":{"'":{"_":{"df":1,"docs":{"60":{"tf":1.0}}},"a":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"95":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"31":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"p":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"87":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"28":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":4,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"121":{"tf":1.0},"31":{"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":{"41":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":2,"docs":{"69":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"f":{"3":{"2":{"df":0,"docs":{},"s":{"(":{"0":{".":{"0":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":3.4641016151377544}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"57":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"104":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"63":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}},"i":{"df":3,"docs":{"123":{"tf":1.0},"30":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":1.0},"30":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.7320508075688772},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.7320508075688772},"50":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"152":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"38":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"44":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"20":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"29":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"v":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"56":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}},"t":{"df":1,"docs":{"28":{"tf":1.0}}},"x":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":2.449489742783178}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"73":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"13":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"122":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"55":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"87":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"120":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":12,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"115":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"28":{"tf":1.0},"37":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"df":4,"docs":{"11":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"70":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"97":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"71":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":4,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"0":{":":{"5":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"130":{"tf":2.0}}},"4":{":":{"4":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"5":{":":{"1":{"3":{"df":2,"docs":{"29":{"tf":1.0},"55":{"tf":1.0}}},"8":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.7320508075688772}}},"6":{":":{"1":{"7":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"104":{"tf":1.0},"91":{"tf":2.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"52":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"df":8,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"115":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"124":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"109":{"tf":1.4142135623730951},"117":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"24":{"tf":2.0},"31":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"56":{"tf":1.0},"75":{"tf":1.0}}}}}}},"i":{"c":{"df":9,"docs":{"122":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.4142135623730951},"63":{"tf":3.605551275463989},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"x":{"8":{"6":{":":{":":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"2":{"5":{"6":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"6":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"6":{"4":{":":{":":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"2":{"5":{"6":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"6":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"152":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"152":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":4,"docs":{"30":{"tf":1.0},"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"115":{"tf":2.0}},"p":{"df":0,"docs":{},"s":{":":{":":{"a":{"d":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"31":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"c":{":":{":":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"a":{"df":0,"docs":{},"r":{"c":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"5":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"154":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.0}},"、":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"、":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"ク":{"df":0,"docs":{},"レ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"ト":{"df":0,"docs":{},"は":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"df":0,"docs":{},"の":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"う":{"df":0,"docs":{},"な":{"df":0,"docs":{},"型":{"df":0,"docs":{},"や":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"の":{"df":0,"docs":{},"機":{"df":0,"docs":{},"能":{"df":0,"docs":{},"を":{"df":0,"docs":{},"提":{"df":0,"docs":{},"供":{"df":0,"docs":{},"し":{"df":0,"docs":{},"て":{"df":0,"docs":{},"い":{"df":0,"docs":{},"ま":{"df":0,"docs":{},"し":{"df":0,"docs":{},"た":{"df":0,"docs":{},"が":{"df":0,"docs":{},"、":{"df":0,"docs":{},"そ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"代":{"df":0,"docs":{},"わ":{"df":0,"docs":{},"り":{"df":0,"docs":{},"に":{"df":0,"docs":{},"グ":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"バ":{"df":0,"docs":{},"ル":{"df":0,"docs":{},"ア":{"df":0,"docs":{},"ロ":{"df":0,"docs":{},"ケ":{"df":0,"docs":{},"ー":{"df":0,"docs":{},"タ":{"df":0,"docs":{},"や":{"df":0,"docs":{},"そ":{"df":0,"docs":{},"の":{"df":0,"docs":{},"他":{"df":0,"docs":{},"の":{"df":0,"docs":{},"o":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"115":{"tf":1.0},"20":{"tf":1.0},"97":{"tf":2.23606797749979}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":14,"docs":{"106":{"tf":1.4142135623730951},"109":{"tf":1.0},"118":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"69":{"tf":1.0},"71":{"tf":1.0}}},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"20":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":5,"docs":{"13":{"tf":2.449489742783178},"48":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"63":{"tf":2.449489742783178}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"118":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":2,"docs":{"133":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"46":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":15,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"46":{"tf":3.605551275463989},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":3.605551275463989},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"<":{"'":{"_":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"a":{">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":5,"docs":{"109":{"tf":1.0},"127":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"101":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"104":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"104":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"23":{"tf":2.23606797749979},"24":{"tf":2.0}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"28":{"tf":1.0},"30":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"18":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0},"71":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":24,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":3.0},"122":{"tf":1.0},"123":{"tf":2.6457513110645907},"124":{"tf":2.0},"125":{"tf":2.8284271247461903},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.7320508075688772},"32":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":2.23606797749979}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"66":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":11,"docs":{"16":{"tf":1.0},"28":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"79":{"tf":1.0},"9":{"tf":1.0},"97":{"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":{"20":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"124":{"tf":1.0}}},"df":36,"docs":{"115":{"tf":1.0},"12":{"tf":2.0},"120":{"tf":1.0},"122":{"tf":2.8284271247461903},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.23606797749979},"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},"28":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"23":{"tf":1.0}},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"18":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"u":{"8":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"19":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.0},"121":{"tf":2.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":3.0},"126":{"tf":2.0},"127":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178}}}}}}},"df":7,"docs":{"155":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":2.0},"57":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":4.58257569495584},"62":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"39":{"tf":1.0},"41":{"tf":1.0},"73":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"29":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"30":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"]":{"df":2,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.0}}},"df":8,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.449489742783178},"20":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"97":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"20":{"tf":1.4142135623730951},"28":{"tf":1.0},"43":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{},"’":{"d":{"df":1,"docs":{"71":{"tf":1.0}}},"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"127":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}},"’":{"df":2,"docs":{"120":{"tf":1.0},"69":{"tf":1.0}}}}},"y":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"31":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":2,"docs":{"41":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"120":{"tf":1.0},"18":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"9":{"tf":1.0}}},"k":{"df":4,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"28":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"71":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"120":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0}},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"31":{"tf":3.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"51":{"tf":1.0},"66":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"31":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}}},"w":{"df":1,"docs":{"31":{"tf":1.0}}}}},"u":{"df":1,"docs":{"31":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"110":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"54":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"114":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}},"df":6,"docs":{"123":{"tf":3.0},"125":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"106":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.4142135623730951},"70":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":1.0}}}},"p":{"df":3,"docs":{"104":{"tf":1.0},"120":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"30":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}},"t":{">":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":24,"docs":{"10":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"150":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.449489742783178},"36":{"tf":2.23606797749979},"37":{"tf":3.1622776601683795},"38":{"tf":3.3166247903554},"39":{"tf":4.123105625617661},"4":{"tf":1.0},"40":{"tf":3.0},"41":{"tf":2.8284271247461903},"42":{"tf":2.8284271247461903},"43":{"tf":4.242640687119285},"44":{"tf":3.7416573867739413},"45":{"tf":2.449489742783178},"46":{"tf":3.605551275463989},"47":{"tf":2.449489742783178},"5":{"tf":1.0},"60":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"73":{"tf":2.0},"76":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"78":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":18,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":2.0},"28":{"tf":2.449489742783178},"29":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"155":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"y":{"!":{"(":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"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":{},"y":{"!":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"!":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{")":{")":{".":{"b":{"a":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"152":{"tf":1.0}},"と":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"、":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"、":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"138":{"tf":1.0},"141":{"tf":1.0}},"e":{".":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":5,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":14,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"71":{"tf":1.4142135623730951},"92":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":27,"docs":{"101":{"tf":2.0},"127":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":2.0},"39":{"tf":2.0},"40":{"tf":2.0},"41":{"tf":3.1622776601683795},"42":{"tf":2.0},"45":{"tf":2.449489742783178},"46":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":2.0}}},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"の":{"df":0,"docs":{},"値":{"df":0,"docs":{},"を":{"df":0,"docs":{},"初":{"df":0,"docs":{},"期":{"df":0,"docs":{},"化":{"df":0,"docs":{},"し":{"df":0,"docs":{},"た":{"df":0,"docs":{},"よ":{"df":0,"docs":{},"う":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}},"u":{".":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"1":{"2":{"8":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":2.449489742783178},"46":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"41":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":5,"docs":{"137":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"66":{"tf":2.0},"71":{"tf":2.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"59":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":2,"docs":{"40":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":3.872983346207417}},"’":{"df":1,"docs":{"69":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"121":{"tf":2.8284271247461903},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"78":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"148":{"tf":2.0},"69":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"101":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"24":{"tf":1.0},"54":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"df":2,"docs":{"31":{"tf":2.6457513110645907},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":2.23606797749979},"99":{"tf":2.0}}}},"df":0,"docs":{}},"df":9,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"18":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"106":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"46":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":72,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.23606797749979},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":3.7416573867739413},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":4.0},"25":{"tf":1.0},"26":{"tf":3.0},"28":{"tf":3.605551275463989},"29":{"tf":2.6457513110645907},"30":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":2.0},"40":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":2.0},"71":{"tf":3.4641016151377544},"73":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"78":{"tf":3.7416573867739413},"79":{"tf":1.0},"83":{"tf":2.23606797749979},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},"文":{"df":0,"docs":{},"の":{"df":0,"docs":{},"上":{"df":0,"docs":{},"で":{"df":0,"docs":{},"宣":{"df":0,"docs":{},"言":{"df":0,"docs":{},"さ":{"df":0,"docs":{},"れ":{"df":0,"docs":{},"て":{"df":0,"docs":{},"い":{"df":0,"docs":{},"る":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"は":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"、":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"あ":{"df":0,"docs":{},"る":{"df":0,"docs":{},"い":{"df":0,"docs":{},"は":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":2.23606797749979},"31":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"v":{".":{"a":{"b":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{")":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"0":{".":{"0":{".":{"1":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"2":{"(":{"df":1,"docs":{"24":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"109":{"tf":1.0}}}},"l":{"df":1,"docs":{"137":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":13,"docs":{"28":{"tf":1.7320508075688772},"34":{"tf":2.23606797749979},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"13":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"110":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":2,"docs":{"122":{"tf":1.0},"71":{"tf":1.0}},"e":{"c":{"!":{"[":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"156":{"tf":2.23606797749979}},"コ":{"df":0,"docs":{},"マ":{"df":0,"docs":{},"ン":{"df":0,"docs":{},"ド":{"df":0,"docs":{},"が":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":104,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":2.8284271247461903},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"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":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.8284271247461903},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":7,"docs":{"118":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":2.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"25":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":3.1622776601683795},"83":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"121":{"tf":2.0}}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"y":{"df":17,"docs":{"101":{"tf":1.0},"122":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":2.23606797749979},"34":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"61":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":3,"docs":{"101":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"125":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":5,"docs":{"110":{"tf":1.0},"28":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}},"v":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"59":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"10":{"tf":1.0}}}},"b":{"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":{"121":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"111":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":13,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"46":{"tf":1.7320508075688772},"57":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"’":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"v":{"df":3,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"58":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}}},"’":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"'":{"a":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"125":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"w":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"'":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"107":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"123":{"tf":2.0}},"s":{"df":0,"docs":{},"上":{"df":0,"docs":{},"の":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"18":{"tf":1.0},"31":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"35":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"107":{"tf":1.0},"28":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":30,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"24":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"103":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}},"s":{"df":1,"docs":{"29":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"78":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"78":{"tf":2.0}}}},"df":0,"docs":{}},"df":31,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"28":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":5,"docs":{"123":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"71":{"tf":2.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}},"df":19,"docs":{"117":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"22":{"tf":2.0},"34":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"54":{"tf":2.449489742783178},"55":{"tf":3.0},"57":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"67":{"tf":1.0},"81":{"tf":3.605551275463989}}},"y":{"df":9,"docs":{"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":2.6457513110645907},"65":{"tf":2.6457513110645907},"67":{"tf":1.0},"81":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":11,"docs":{"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"106":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":14,"docs":{"106":{"tf":1.0},"123":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"v":{"df":4,"docs":{"20":{"tf":1.0},"75":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"71":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"’":{"d":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}},"r":{"df":2,"docs":{"70":{"tf":1.0},"82":{"tf":1.0}}},"v":{"df":4,"docs":{"26":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"z":{"df":3,"docs":{"101":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}}}}},"title":{"root":{"1":{"2":{"8":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"1":{"5":{"df":1,"docs":{"8":{"tf":1.0}}},"8":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":1,"docs":{"58":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"122":{"tf":1.0},"154":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"47":{"tf":1.0},"58":{"tf":1.0}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"16":{"tf":1.0}}},"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":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"124":{"tf":1.0}}}}},"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":12,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"127":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"10":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":3,"docs":{"135":{"tf":1.0},"139":{"tf":1.0},"63":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"127":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"107":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":1,"docs":{"90":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}},"i":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.0},"35":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"71":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"104":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"33":{"tf":1.0}}}}},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":2,"docs":{"135":{"tf":1.0},"148":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":1,"docs":{"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"37":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"125":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"15":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"120":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":1.0}}}},"w":{"df":1,"docs":{"120":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":5,"docs":{"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":16,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":3,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"w":{"df":3,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"15":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"w":{"df":2,"docs":{"117":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.0},"68":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"27":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}},"w":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"93":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"91":{"tf":1.0}}},"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"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":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"124":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"12":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":1,"docs":{"61":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"29":{"tf":1.0}}}}},"o":{"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":{"123":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"98":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"と":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"152":{"tf":1.0}}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"37":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":5,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}});
\ No newline at end of file
+Object.assign(window.search, {"doc_urls":["introduction.html#序文","editions/index.html#エディションとは","editions/index.html#互換性","editions/creating-a-new-project.html#新しいプロジェクトを作成する","editions/transitioning-an-existing-project-to-a-new-edition.html#既存のプロジェクトのエディションを移行する","editions/transitioning-an-existing-project-to-a-new-edition.html#あなたのコードを新しいエディションでコンパイルできるようにする","editions/transitioning-an-existing-project-to-a-new-edition.html#新機能を使うために新たなエディションを有効化する","editions/transitioning-an-existing-project-to-a-new-edition.html#新しいエディションで慣用的なコードを書く","editions/advanced-migrations.html#advanced-migration-strategies","editions/advanced-migrations.html#how-migrations-work","editions/advanced-migrations.html#migrating-multiple-configurations","editions/advanced-migrations.html#migrating-a-large-project-or-workspace","editions/advanced-migrations.html#partial-migration-with-broken-code","editions/advanced-migrations.html#migrating-macros","editions/advanced-migrations.html#macro-hygiene","editions/advanced-migrations.html#documentation-tests","editions/advanced-migrations.html#generated-code","editions/advanced-migrations.html#migrating-non-cargo-projects","editions/advanced-migrations.html#writing-idiomatic-code-in-a-new-edition","rust-2015/index.html#rust-2015","rust-2018/index.html#rust-2018","rust-2018/path-changes.html#path-and-module-system-changes","rust-2018/path-changes.html#summary","rust-2018/path-changes.html#motivation","rust-2018/path-changes.html#more-details","rust-2018/path-changes.html#no-more-extern-crate","rust-2018/path-changes.html#the-crate-keyword-refers-to-the-current-crate","rust-2018/path-changes.html#extern-crate-paths","rust-2018/path-changes.html#no-more-modrs","rust-2018/path-changes.html#use-paths","rust-2018/trait-fn-parameters.html#anonymous-trait-function-parameters-deprecated","rust-2018/trait-fn-parameters.html#summary","rust-2018/trait-fn-parameters.html#details","rust-2018/new-keywords.html#new-keywords","rust-2018/new-keywords.html#summary","rust-2018/new-keywords.html#motivation","rust-2018/new-keywords.html#dyn-trait-for-trait-objects","rust-2018/new-keywords.html#async-and-await","rust-2018/new-keywords.html#try-keyword","rust-2018/tyvar-behind-raw-pointer.html#method-dispatch-for-raw-pointers-to-inference-variables","rust-2018/tyvar-behind-raw-pointer.html#summary","rust-2018/tyvar-behind-raw-pointer.html#details","rust-2018/cargo.html#cargo-changes","rust-2018/cargo.html#summary","rust-post-2018/index.html#rust-2018以降の変更","rust-post-2018/dbg-macro.html#dbg-マクロ","rust-post-2018/no-jemalloc.html#デフォルトでjemallocを使わない","rust-post-2018/uniform-paths.html#統一的なパス","rust-post-2018/literal-macro-matcher.html#リテラルマクロマッチャ","rust-post-2018/qustion-mark-operator-in-macros.html#マクロ内の演算子","rust-post-2018/const-fn.html#const-fn","rust-post-2018/const-fn.html#整数の算術演算および比較演算","rust-post-2018/const-fn.html#多くのブーリアン演算","rust-post-2018/const-fn.html#配列構造体列挙型タプルの生成","rust-post-2018/const-fn.html#他のconst関数の呼び出し","rust-post-2018/const-fn.html#配列やスライスの添字式","rust-post-2018/const-fn.html#構造体やタプルのフィールドアクセス","rust-post-2018/const-fn.html#定数読み出し","rust-post-2018/const-fn.html#参照の--と-","rust-post-2018/const-fn.html#キャストただし生ポインタから整数へのキャストは除く","rust-post-2018/const-fn.html#論駁不可能な分配パターン","rust-post-2018/const-fn.html#let-束縛","rust-post-2018/const-fn.html#代入","rust-post-2018/const-fn.html#unsafe-fn-の呼び出し","rust-post-2018/pin.html#ピン留め","rust-post-2018/no-more-fnbox.html#fnboxは不要に","rust-post-2018/alternative-cargo-registries.html#cargoレジストリが選択できるように","rust-post-2018/tryfrom-and-tryinto.html#tryfromとtryinto","rust-post-2018/future.html#futureトレイト","rust-post-2018/alloc.html#allocクレート","rust-post-2018/maybe-uninit.html#maybeuninit","rust-post-2018/cargo-vendor.html#cargo-vendor","rust-2021/index.html#rust-2021","rust-2021/prelude.html#additions-to-the-prelude","rust-2021/prelude.html#summary","rust-2021/prelude.html#details","rust-2021/prelude.html#migration","rust-2021/prelude.html#migration-needed","rust-2021/prelude.html#no-migration-needed","rust-2021/prelude.html#implementation-reference","rust-2021/default-cargo-resolver.html#default-cargo-feature-resolver","rust-2021/default-cargo-resolver.html#summary","rust-2021/default-cargo-resolver.html#details","rust-2021/default-cargo-resolver.html#migration","rust-2021/default-cargo-resolver.html#build-failures","rust-2021/default-cargo-resolver.html#exploring-features","rust-2021/IntoIterator-for-arrays.html#intoiterator-for-arrays","rust-2021/IntoIterator-for-arrays.html#summary","rust-2021/IntoIterator-for-arrays.html#details","rust-2021/IntoIterator-for-arrays.html#migration","rust-2021/IntoIterator-for-arrays.html#optional-migration","rust-2021/disjoint-capture-in-closures.html#disjoint-capture-in-closures","rust-2021/disjoint-capture-in-closures.html#summary","rust-2021/disjoint-capture-in-closures.html#details","rust-2021/disjoint-capture-in-closures.html#migration","rust-2021/disjoint-capture-in-closures.html#wild-card-patterns","rust-2021/disjoint-capture-in-closures.html#drop-order","rust-2021/disjoint-capture-in-closures.html#trait-implementations","rust-2021/panic-macro-consistency.html#panic-macro-consistency","rust-2021/panic-macro-consistency.html#summary","rust-2021/panic-macro-consistency.html#details","rust-2021/panic-macro-consistency.html#migration","rust-2021/reserving-syntax.html#reserving-syntax","rust-2021/reserving-syntax.html#summary","rust-2021/reserving-syntax.html#details","rust-2021/reserving-syntax.html#migration","rust-2021/warnings-promoted-to-error.html#warnings-promoted-to-errors","rust-2021/warnings-promoted-to-error.html#summary","rust-2021/warnings-promoted-to-error.html#details","rust-2021/warnings-promoted-to-error.html#bare_trait_objects","rust-2021/warnings-promoted-to-error.html#ellipsis_inclusive_range_patterns","rust-2021/warnings-promoted-to-error.html#migrations","rust-2021/or-patterns-macro-rules.html#or-patterns-in-macro-rules","rust-2021/or-patterns-macro-rules.html#summary","rust-2021/or-patterns-macro-rules.html#details","rust-2021/or-patterns-macro-rules.html#migration"],"index":{"documentStore":{"docInfo":{"0":{"body":3,"breadcrumbs":0,"title":0},"1":{"body":7,"breadcrumbs":0,"title":0},"10":{"body":78,"breadcrumbs":5,"title":3},"100":{"body":166,"breadcrumbs":6,"title":1},"101":{"body":108,"breadcrumbs":6,"title":1},"102":{"body":0,"breadcrumbs":6,"title":2},"103":{"body":38,"breadcrumbs":5,"title":1},"104":{"body":157,"breadcrumbs":5,"title":1},"105":{"body":72,"breadcrumbs":5,"title":1},"106":{"body":0,"breadcrumbs":8,"title":3},"107":{"body":8,"breadcrumbs":6,"title":1},"108":{"body":13,"breadcrumbs":6,"title":1},"109":{"body":32,"breadcrumbs":6,"title":1},"11":{"body":80,"breadcrumbs":6,"title":4},"110":{"body":37,"breadcrumbs":6,"title":1},"111":{"body":31,"breadcrumbs":6,"title":1},"112":{"body":0,"breadcrumbs":8,"title":3},"113":{"body":24,"breadcrumbs":6,"title":1},"114":{"body":116,"breadcrumbs":6,"title":1},"115":{"body":81,"breadcrumbs":6,"title":1},"12":{"body":122,"breadcrumbs":6,"title":4},"13":{"body":136,"breadcrumbs":4,"title":2},"14":{"body":100,"breadcrumbs":4,"title":2},"15":{"body":43,"breadcrumbs":4,"title":2},"16":{"body":32,"breadcrumbs":4,"title":2},"17":{"body":103,"breadcrumbs":6,"title":4},"18":{"body":127,"breadcrumbs":7,"title":5},"19":{"body":22,"breadcrumbs":4,"title":2},"2":{"body":5,"breadcrumbs":0,"title":0},"20":{"body":43,"breadcrumbs":4,"title":2},"21":{"body":4,"breadcrumbs":10,"title":4},"22":{"body":23,"breadcrumbs":7,"title":1},"23":{"body":107,"breadcrumbs":7,"title":1},"24":{"body":6,"breadcrumbs":8,"title":2},"25":{"body":265,"breadcrumbs":9,"title":3},"26":{"body":43,"breadcrumbs":11,"title":5},"27":{"body":63,"breadcrumbs":9,"title":3},"28":{"body":66,"breadcrumbs":8,"title":2},"29":{"body":231,"breadcrumbs":8,"title":2},"3":{"body":40,"breadcrumbs":0,"title":0},"30":{"body":4,"breadcrumbs":12,"title":5},"31":{"body":8,"breadcrumbs":8,"title":1},"32":{"body":34,"breadcrumbs":8,"title":1},"33":{"body":4,"breadcrumbs":6,"title":2},"34":{"body":13,"breadcrumbs":5,"title":1},"35":{"body":0,"breadcrumbs":5,"title":1},"36":{"body":98,"breadcrumbs":8,"title":4},"37":{"body":11,"breadcrumbs":6,"title":2},"38":{"body":10,"breadcrumbs":6,"title":2},"39":{"body":0,"breadcrumbs":14,"title":6},"4":{"body":22,"breadcrumbs":0,"title":0},"40":{"body":5,"breadcrumbs":9,"title":1},"41":{"body":5,"breadcrumbs":9,"title":1},"42":{"body":0,"breadcrumbs":6,"title":2},"43":{"body":33,"breadcrumbs":5,"title":1},"44":{"body":6,"breadcrumbs":4,"title":2},"45":{"body":112,"breadcrumbs":4,"title":1},"46":{"body":28,"breadcrumbs":4,"title":1},"47":{"body":16,"breadcrumbs":2,"title":0},"48":{"body":14,"breadcrumbs":2,"title":0},"49":{"body":8,"breadcrumbs":2,"title":0},"5":{"body":23,"breadcrumbs":0,"title":0},"50":{"body":30,"breadcrumbs":6,"title":2},"51":{"body":10,"breadcrumbs":4,"title":0},"52":{"body":13,"breadcrumbs":4,"title":0},"53":{"body":33,"breadcrumbs":4,"title":0},"54":{"body":17,"breadcrumbs":5,"title":1},"55":{"body":13,"breadcrumbs":4,"title":0},"56":{"body":25,"breadcrumbs":4,"title":0},"57":{"body":15,"breadcrumbs":4,"title":0},"58":{"body":10,"breadcrumbs":4,"title":0},"59":{"body":12,"breadcrumbs":4,"title":0},"6":{"body":17,"breadcrumbs":0,"title":0},"60":{"body":11,"breadcrumbs":4,"title":0},"61":{"body":12,"breadcrumbs":4,"title":0},"62":{"body":12,"breadcrumbs":4,"title":0},"63":{"body":19,"breadcrumbs":6,"title":2},"64":{"body":11,"breadcrumbs":2,"title":0},"65":{"body":47,"breadcrumbs":4,"title":1},"66":{"body":20,"breadcrumbs":4,"title":1},"67":{"body":24,"breadcrumbs":4,"title":1},"68":{"body":8,"breadcrumbs":4,"title":1},"69":{"body":23,"breadcrumbs":4,"title":1},"7":{"body":49,"breadcrumbs":0,"title":0},"70":{"body":28,"breadcrumbs":4,"title":1},"71":{"body":10,"breadcrumbs":6,"title":2},"72":{"body":34,"breadcrumbs":4,"title":2},"73":{"body":0,"breadcrumbs":6,"title":2},"74":{"body":16,"breadcrumbs":5,"title":1},"75":{"body":109,"breadcrumbs":5,"title":1},"76":{"body":72,"breadcrumbs":5,"title":1},"77":{"body":182,"breadcrumbs":6,"title":2},"78":{"body":68,"breadcrumbs":6,"title":2},"79":{"body":134,"breadcrumbs":6,"title":2},"8":{"body":0,"breadcrumbs":5,"title":3},"80":{"body":0,"breadcrumbs":10,"title":4},"81":{"body":6,"breadcrumbs":7,"title":1},"82":{"body":67,"breadcrumbs":7,"title":1},"83":{"body":84,"breadcrumbs":7,"title":1},"84":{"body":294,"breadcrumbs":8,"title":2},"85":{"body":207,"breadcrumbs":8,"title":2},"86":{"body":0,"breadcrumbs":6,"title":2},"87":{"body":29,"breadcrumbs":5,"title":1},"88":{"body":157,"breadcrumbs":5,"title":1},"89":{"body":116,"breadcrumbs":5,"title":1},"9":{"body":134,"breadcrumbs":4,"title":2},"90":{"body":15,"breadcrumbs":6,"title":2},"91":{"body":0,"breadcrumbs":8,"title":3},"92":{"body":31,"breadcrumbs":6,"title":1},"93":{"body":99,"breadcrumbs":6,"title":1},"94":{"body":111,"breadcrumbs":6,"title":1},"95":{"body":77,"breadcrumbs":8,"title":3},"96":{"body":133,"breadcrumbs":7,"title":2},"97":{"body":132,"breadcrumbs":7,"title":2},"98":{"body":0,"breadcrumbs":8,"title":3},"99":{"body":33,"breadcrumbs":6,"title":1}},"docs":{"0":{"body":"Rust エディションガイドへようこそ!「エディション」とは、Rust でのコードの書き方 における重大な変化をあなたに伝えるためにあるものです。 このガイドでは、下記の項目について説明します: エディションとは何か 各エディションの内容 コードをあるエディションから別のエディションへ移行する方法 Rust が新しくリリースされるとともに、標準ライブラリは発展します。標準ライブラリ へ追加される機能のうち、重要なものだけがこのガイドに記載されていますが、記載は ないものの、すばらしい機能も沢山追加されています。 標準ライブラリのドキュメンテーション も是非 ご覧ください。","breadcrumbs":"序文 » 序文","id":"0","title":"序文"},"1":{"body":"Rustは6週間ごとにリリースを行います。 これにより、ユーザーは新しい機能を常に手に入れることができます。 これは他の言語よりも速いサイクルですが、アップデートのサイズは小さくなります。 しばらくするとこれらの小変更が積み重なってきますが、いくつかのリリースを振り返って、「おお、バージョン1.10から1.20の間にRustは大きく変わったなぁ」と言うのは難しいかも知れません。 2,3年に一度、Rustの新しい「エディション」を作成します。 各エディションはそれまでRustに加えられた変更をまとめ上げたもので、最新のドキュメントとツールもそれに含まれます。 新しいエディションは通常のリリースプロセスを経てリリースされます。 エディションは様々な人の異なる要求を満たします。 Rustのアクティブなユーザーにとっては、6週間ごとににリリースされた機能変更をわかりやすくまとめたパッケージとなります。 Rustを使っていない人にとっては、大きな変更が施されたことを知らせる役割を果たし、それによってRustを使ってみようと思うようになるかも知れません。 Rustの内部開発者にとっては、プロジェクト全体の長期的なゴールになります。","breadcrumbs":"エディションとは? » エディションとは?","id":"1","title":"エディションとは?"},"10":{"body":"cargo fix can only work with a single configuration at a time. If you use Cargo features or conditional compilation , then you may need to run cargo fix multiple times with different flags. For example, if you have code that uses #[cfg] attributes to include different code for different platforms, you may need to run cargo fix with the --target option to fix for different targets. This may require moving your code between machines if you don't have cross-compiling available. Similarly, if you have conditions on Cargo features, like #[cfg(feature = \"my-optional-thing\")], it is recommended to use the --all-features flag to allow cargo fix to migrate all the code behind those feature gates. If you want to migrate feature code individually, you can use the --features flag to migrate one at a time.","breadcrumbs":"エディションとは? » Advanced migrations » Migrating multiple configurations","id":"10","title":"Migrating multiple configurations"},"100":{"body":"The panic!() macro is one of Rust's most well known macros. However, it has some subtle surprises that we can't just change due to backwards compatibility. // Rust 2018\npanic!(\"{}\", 1); // Ok, panics with the message \"1\"\npanic!(\"{}\"); // Ok, panics with the message \"{}\" The panic!() macro only uses string formatting when it's invoked with more than one argument. When invoked with a single argument, it doesn't even look at that argument. // Rust 2018\nlet a = \"{\";\nprintln!(a); // Error: First argument must be a format string literal\npanic!(a); // Ok: The panic macro doesn't care It even accepts non-strings such as panic!(123), which is uncommon and rarely useful since it produces a surprisingly unhelpful message: panicked at 'Box'. This will especially be a problem once implicit format arguments are stabilized. That feature will make println!(\"hello {name}\") a short-hand for println!(\"hello {}\", name). However, panic!(\"hello {name}\") would not work as expected, since panic!() doesn't process a single argument as format string. To avoid that confusing situation, Rust 2021 features a more consistent panic!() macro. The new panic!() macro will no longer accept arbitrary expressions as the only argument. It will, just like println!(), always process the first argument as format string. Since panic!() will no longer accept arbitrary payloads, panic_any() will be the only way to panic with something other than a formatted string. // Rust 2021\npanic!(\"{}\", 1); // Ok, panics with the message \"1\"\npanic!(\"{}\"); // Error, missing argument\npanic!(a); // Error, must be a string literal In addition, core::panic!() and std::panic!() will be identical in Rust 2021. Currently, there are some historical differences between those two, which can be noticeable when switching #![no_std] on or off.","breadcrumbs":"Rust 2021 » Panic macro consistency » Details","id":"100","title":"Details"},"101":{"body":"A lint, non_fmt_panics, gets triggered whenever there is some call to panic that uses some deprecated behavior that will error in Rust 2021. The non_fmt_panics lint has already been a warning by default on all editions since the 1.50 release (with several enhancements made in later releases). If your code is already warning free, then it should already be ready to go for Rust 2021! You can automatically migrate your code to be Rust 2021 Edition compatible or ensure it is already compatible by running: cargo fix --edition Should you choose or need to manually migrate, you'll need to update all panic invocations to either use the same formatting as println or use std::panic::panic_any to panic with non-string data. For example, in the case of panic!(MyStruct), you'll need to convert to using std::panic::panic_any (note that this is a function not a macro): std::panic::panic_any(MyStruct). In the case of panic messages that include curly braces but the wrong number of arguments (e.g., panic!(\"Some curlies: {}\")), you can panic with the string literal by either using the same syntax as println! (i.e., panic!(\"{}\", \"Some curlies: {}\")) or by escaping the curly braces (i.e., panic!(\"Some curlies: {{}}\")).","breadcrumbs":"Rust 2021 » Panic macro consistency » Migration","id":"101","title":"Migration"},"102":{"body":"","breadcrumbs":"Rust 2021 » Reserving syntax » Reserving syntax","id":"102","title":"Reserving syntax"},"103":{"body":"any_identifier#, any_identifier\"...\", and any_identifier'...' are now reserved syntax, and no longer tokenize. This is mostly relevant to macros. E.g. quote!{ #a#b } is no longer accepted. It doesn't treat keywords specially, so e.g. match\"...\" {} is no longer accepted. Insert whitespace between the identifier and the subsequent #, \", or ' to avoid errors. Edition migrations will help you insert whitespace in such cases.","breadcrumbs":"Rust 2021 » Reserving syntax » Summary","id":"103","title":"Summary"},"104":{"body":"To make space for new syntax in the future, we've decided to reserve syntax for prefixed identifiers and literals: prefix#identifier, prefix\"string\", prefix'c', and prefix#123, where prefix can be any identifier. (Except those prefixes that already have a meaning, such as b'...' (byte strings) and r\"...\" (raw strings).) This provides syntax we can expand into in the future without requiring an edition boundary. We may use this for temporary syntax until the next edition, or for permanent syntax if appropriate. Without an edition, this would be a breaking change, since macros can currently accept syntax such as hello\"world\", which they will see as two separate tokens: hello and \"world\". The (automatic) fix is simple though: just insert a space: hello \"world\". Likewise, prefix#ident should become prefix #ident. Edition migrations will help with this fix. Other than turning these into a tokenization error, the RFC does not attach a meaning to any prefix yet. Assigning meaning to specific prefixes is left to future proposals, which will now—thanks to reserving these prefixes—not be breaking changes. Some new prefixes you might potentially see in the future (though we haven't committed to any of them yet): k#keyword to allow writing keywords that don't exist yet in the current edition. For example, while async is not a keyword in edition 2015, this prefix would've allowed us to accept k#async in edition 2015 without having to wait for edition 2018 to reserve async as a keyword. f\"\" as a short-hand for a format string. For example, f\"hello {name}\" as a short-hand for the equivalent format!() invocation. s\"\" for String literals. c\"\" or z\"\" for null-terminated C strings.","breadcrumbs":"Rust 2021 » Reserving syntax » Details","id":"104","title":"Details"},"105":{"body":"As a part of the 2021 edition a migration lint, rust_2021_prefixes_incompatible_syntax, has been added in order to aid in automatic migration of Rust 2018 codebases to Rust 2021. In order to have rustfix migrate your code to be Rust 2021 Edition compatible, run: cargo fix --edition Should you want or need to manually migrate your code, migration is fairly straight-forward. Let's say you have a macro that is defined like so: macro_rules! my_macro { ($a:tt $b:tt) => {};\n} In Rust 2015 and 2018 it's legal for this macro to be called like so with no space between the first token tree and the second: my_macro!(z\"hey\"); This z prefix is no longer allowed in Rust 2021, so in order to call this macro, you must add a space after the prefix like so: my_macro!(z \"hey\");","breadcrumbs":"Rust 2021 » Reserving syntax » Migration","id":"105","title":"Migration"},"106":{"body":"","breadcrumbs":"Rust 2021 » Warnings promoted to errors » Warnings promoted to errors","id":"106","title":"Warnings promoted to errors"},"107":{"body":"Code that triggered the bare_trait_objects and ellipsis_inclusive_range_patterns lints will error in Rust 2021.","breadcrumbs":"Rust 2021 » Warnings promoted to errors » Summary","id":"107","title":"Summary"},"108":{"body":"Two existing lints are becoming hard errors in Rust 2021, but these lints will remain warnings in older editions.","breadcrumbs":"Rust 2021 » Warnings promoted to errors » Details","id":"108","title":"Details"},"109":{"body":"The use of the dyn keyword to identify trait objects will be mandatory in Rust 2021. For example, the following code which does not include the dyn keyword in &MyTrait will produce an error instead of just a lint in Rust 2021: pub trait MyTrait {} pub fn my_function(_trait_object: &MyTrait) { // should be `&dyn MyTrait` unimplemented!()\n}","breadcrumbs":"Rust 2021 » Warnings promoted to errors » bare_trait_objects:","id":"109","title":"bare_trait_objects:"},"11":{"body":"You can migrate a large project incrementally to make the process easier if you run into problems. In a Cargo workspace , each package defines its own edition, so the process naturally involves migrating one package at a time. Within a Cargo package , you can either migrate the entire package at once, or migrate individual Cargo targets one at a time. For example, if you have multiple binaries, tests, and examples, you can use specific target selection flags with cargo fix --edition to migrate just that one target. By default, cargo fix uses --all-targets. For even more advanced cases, you can specify the edition for each individual target in Cargo.toml like this: [[bin]]\nname = \"my-binary\"\nedition = \"2018\" This usually should not be required, but is an option if you have a lot of targets and are having difficulty migrating them all together.","breadcrumbs":"エディションとは? » Advanced migrations » Migrating a large project or workspace","id":"11","title":"Migrating a large project or workspace"},"110":{"body":"The deprecated ... syntax for inclusive range patterns (i.e., ranges where the end value is included in the range) is no longer accepted in Rust 2021. It has been superseded by ..=, which is consistent with expressions. For example, the following code which uses ... in a pattern will produce an error instead of just a lint in Rust 2021: pub fn less_or_eq_to_100(n: u8) -> bool { matches!(n, 0...100) // should be `0..=100`\n}","breadcrumbs":"Rust 2021 » Warnings promoted to errors » ellipsis_inclusive_range_patterns:","id":"110","title":"ellipsis_inclusive_range_patterns:"},"111":{"body":"If your Rust 2015 or 2018 code does not produce any warnings for bare_trait_objects or ellipsis_inclusive_range_patterns and you've not allowed these lints through the use of #![allow()] or some other mechanism, then there's no need to migrate. To automatically migrate any crate that uses ... in patterns or does not use dyn with trait objects, you can run cargo fix --edition.","breadcrumbs":"Rust 2021 » Warnings promoted to errors » Migrations","id":"111","title":"Migrations"},"112":{"body":"","breadcrumbs":"Rust 2021 » Or patterns in macro-rules » Or patterns in macro-rules","id":"112","title":"Or patterns in macro-rules"},"113":{"body":"How patterns work in macro_rules macros changes slightly: $_:pat in macro_rules now matches usage of | too: e.g. A | B. The new $_:pat_param behaves like $_:pat did before; it does not match (top level) |. $_:pat_param is available in all editions.","breadcrumbs":"Rust 2021 » Or patterns in macro-rules » Summary","id":"113","title":"Summary"},"114":{"body":"Starting in Rust 1.53.0, patterns are extended to support | nested anywhere in the pattern. This enables you to write Some(1 | 2) instead of Some(1) | Some(2). Since this was simply not allowed before, this is not a breaking change. However, this change also affects macro_rules macros . Such macros can accept patterns using the :pat fragment specifier. Currently, :pat does not match top level |, since before Rust 1.53, not all patterns (at all nested levels) could contain a |. Macros that accept patterns like A | B, such as matches!() use something like $($_:pat)|+. Because this would potentially break existing macros, the meaning of :pat did not change in Rust 1.53.0 to include |. Instead, that change happens in Rust 2021. In the new edition, the :pat fragment specifier will match A | B. $_:pat fragments in Rust 2021 cannot be followed by an explicit |. Since there are times that one still wishes to match pattern fragments followed by a |, the fragment specified :pat_param has been added to retain the older behavior. It's important to remember that editions are per crate , so the only relevant edition is the edition of the crate where the macro is defined. The edition of the crate where the macro is used does not change how the macro works.","breadcrumbs":"Rust 2021 » Or patterns in macro-rules » Details","id":"114","title":"Details"},"115":{"body":"A lint, rust_2021_incompatible_or_patterns, gets triggered whenever there is a use $_:pat which will change meaning in Rust 2021. You can automatically migrate your code to be Rust 2021 Edition compatible or ensure it is already compatible by running: cargo fix --edition If you have a macro which relies on $_:pat not matching the top level use of | in patterns, you'll need to change each occurrence of $_:pat to $_:pat_param. For example: macro_rules! my_macro { ($x:pat | $y:pat) => { // TODO: implementation } } // This macro works in Rust 2018 since `$x:pat` does not match against `|`:\nmy_macro!(1 | 2); // In Rust 2021 however, the `$_:pat` fragment matches `|` and is not allowed\n// to be followed by a `|`. To make sure this macro still works in Rust 2021\n// change the macro to the following:\nmacro_rules! my_macro { ($x:pat_param | $y:pat) => { // <- this line is different // TODO: implementation } }","breadcrumbs":"Rust 2021 » Or patterns in macro-rules » Migration","id":"115","title":"Migration"},"12":{"body":"Sometimes the fixes suggested by the compiler may fail to work. When this happens, Cargo will report a warning indicating what happened and what the error was. However, by default it will automatically back out the changes it made. It can be helpful to keep the code in the broken state and manually resolve the issue. Some of the fixes may have been correct, and the broken fix maybe be mostly correct, but just need minor tweaking. In this situation, use the --broken-code option with cargo fix to tell Cargo not to back out the changes. Then, you can go manually inspect the error and investigate what is needed to fix it. Another option to incrementally migrate a project is to apply individual fixes separately, one at a time. You can do this by adding the individual lints as warnings, and then either running cargo fix (without the --edition flag) or using your editor or IDE to apply its suggestions if it supports \"Quick Fixes\". For example, the 2018 edition uses the keyword-idents lint to fix any conflicting keywords. You can add #![warn(keyword_idents)] to the top of each crate (like at the top of src/lib.rs or src/main.rs). Then, running cargo fix will apply just the suggestions for that lint. You can see the list of lints enabled for each edition in the lint group page, or run the rustc -Whelp command.","breadcrumbs":"エディションとは? » Advanced migrations » Partial migration with broken code","id":"12","title":"Partial migration with broken code"},"13":{"body":"Some macros may require manual work to fix them for the next edition. For example, cargo fix --edition may not be able to automatically fix a macro that generates syntax that does not work in the next edition. This may be a problem for both proc macros and macro_rules-style macros. macro_rules macros can sometimes be automatically updated if the macro is used within the same crate, but there are several situations where it cannot. Proc macros in general cannot be automatically fixed at all. For example, if we migrate a crate containing this (contrived) macro foo from 2015 to 2018, foo would not be automatically fixed. #[macro_export]\nmacro_rules! foo { () => { let dyn = 1; println!(\"it is {}\", dyn); };\n} When this macro is defined in a 2015 crate, it can be used from a crate of any other edition due to macro hygiene (discussed below). In 2015, dyn is a normal identifier and can be used without restriction. However, in 2018, dyn is no longer a valid identifier. When using cargo fix --edition to migrate to 2018, Cargo won't display any warnings or errors at all. However, foo won't work when called from any crate. If you have macros, you are encouraged to make sure you have tests that fully cover the macro's syntax. You may also want to test the macros by importing and using them in crates from multiple editions, just to ensure it works correctly everywhere. If you run into issues, you'll need to read through the chapters of this guide to understand how the code can be changed to work across all editions.","breadcrumbs":"エディションとは? » Advanced migrations » Migrating macros","id":"13","title":"Migrating macros"},"14":{"body":"Macros use a system called \"edition hygiene\" where the tokens within a macro are marked with which edition they come from. This allows external macros to be called from crates of varying editions without needing to worry about which edition it is called from. Let's take a closer look at the example above that defines a macro_rules macro using dyn as an identifier. If that macro was defined in a crate using the 2015 edition, then that macro works fine, even if it were called from a 2018 crate where dyn is a keyword and that would normally be a syntax error. The let dyn = 1; tokens are marked as being from 2015, and the compiler will remember that wherever that code gets expanded. The parser looks at the edition of the tokens to know how to interpret it. The problem arises when changing the edition to 2018 in the crate where it is defined. Now, those tokens are tagged with the 2018 edition, and those will fail to parse. However, since we never called the macro from our crate, cargo fix --edition never had a chance to inspect the macro and fix it.","breadcrumbs":"エディションとは? » Advanced migrations » Macro hygiene","id":"14","title":"Macro hygiene"},"15":{"body":"At this time, cargo fix is not able to update documentation tests . After updating the edition in Cargo.toml, you should run cargo test to ensure everything still passes. If your documentation tests use syntax that is not supported in the new edition, you will need to update them manually. In rare cases, you can manually set the edition for each test. For example, you can use the edition2018 annotation on the triple backticks to tell rustdoc which edition to use.","breadcrumbs":"エディションとは? » Advanced migrations » Documentation tests","id":"15","title":"Documentation tests"},"16":{"body":"Another area where the automated fixes cannot apply is if you have a build script which generates Rust code at compile time (see Code generation for an example). In this situation, if you end up with code that doesn't work in the next edition, you will need to manually change the build script to generate code that is compatible.","breadcrumbs":"エディションとは? » Advanced migrations » Generated code","id":"16","title":"Generated code"},"17":{"body":"If your project is not using Cargo as a build system, it may still be possible to make use of the automated lints to assist migrating to the next edition. You can enable the migration lints as described above by enabling the appropriate lint group . For example, you can use the #![warn(rust_2021_compatibility)] attribute or the -Wrust-2021-compatibility or --force-warns=rust-2021-compatibility CLI flag . The next step is to apply those lints to your code. There are several options here: Manually read the warnings and apply the suggestions recommended by the compiler. Use an editor or IDE that supports automatically applying suggestions. For example, Visual Studio Code with the Rust Analyzer extension has the ability to use the \"Quick Fix\" links to automatically apply suggestions. Many other editors and IDEs have similar functionality. Write a migration tool using the rustfix library. This is the library that Cargo uses internally to take the JSON messages from the compiler and modify the source code. Check the examples directory for examples of how to use the library.","breadcrumbs":"エディションとは? » Advanced migrations » Migrating non-Cargo projects","id":"17","title":"Migrating non-Cargo projects"},"18":{"body":"Editions are not only about new features and removing old ones. In any programming language, idioms change over time, and Rust is no exception. While old code will continue to compile, it might be written with different idioms today. For example, in Rust 2015, external crates must be listed with extern crate like this: // src/lib.rs\nextern crate rand; In Rust 2018, it is no longer necessary to include these items. cargo fix has the --edition-idioms option to automatically transition some of these idioms to the new syntax. Warning : The current \"idiom lints\" are known to have some problems. They may make incorrect suggestions which may fail to compile. The current lints are: Edition 2018: unused-extern-crates explicit-outlives-requirements Edition 2021 does not have any idiom lints. The following instructions are recommended only for the intrepid who are willing to work through a few compiler/Cargo bugs! If you run into problems, you can try the --broken-code option described above to make as much progress as possible, and then resolve the remaining issues manually. With that out of the way, we can instruct Cargo to fix our code snippet with: cargo fix --edition-idioms Afterwards, the line with extern crate rand; in src/lib.rs will be removed. We're now more idiomatic, and we didn't have to fix our code manually!","breadcrumbs":"エディションとは? » Advanced migrations » Writing idiomatic code in a new edition","id":"18","title":"Writing idiomatic code in a new edition"},"19":{"body":"Rust 2015は「安定性」というテーマを掲げています。 このエディションはRust 1.0のリリースから始まり、デフォルトのエディションとなっています。 エディションの仕組み自体は2017年末に考案されましたが、Rust 1.0は2015年5月にリリースされていて、「2015」が特定のエディションを指定しなかった時のデフォルトになります。 「安定性」がRust 2015エディションのテーマです。 なぜなら、Rust 1.0はRust開発に著しい変化をもたらしたからです。 Rust 1.0以前は、Rustは毎日のように変わっていました。 そのような言語は大規模なソフトウエア開発には使えないですし、学ぶことも難しいでしょう。 Rust 1.0とRust 2015エディションの登場とともに、我々は後方互換性にコミットし、Rust上で開発を行う人々のための強固な基盤を提供しています。 Rust 2015はデフォルトのエディションなのであなたのコードをRust 2015へポーティングするということはありません。 どんなRustのコードもRust 2015 です 。 あなたは Rust 2015から 離れる ことはあっても、 近づいていく ということはありません。 ということで、これ以上あまり言うことはないでしょう!","breadcrumbs":"Rust 2015 » Rust 2015","id":"19","title":"Rust 2015"},"2":{"body":"新しいエディションがコンパイラで利用可能になった際に、その利点を最大限に活かすためには、クレートは明示的にオプトインする必要があります。 このオプトインはエディションに非互換の変更を加えるために必要で、例えば、既存のコードで使われている識別子と競合する新たなキーワードを導入したり、警告だったものをエラーにする、などの変更を加えることができるようになります。 Rustのコンパイラはこれまでの全てのエディションをサポートしていて、複数のクレートが異なるエディションを使用していても一つにリンクできます。 エディションの変更はコンパイラが最初にコードを構文解析する際の動作のみに影響します。 従って、例ばあなたがRust 2015を使っていて、依存するクレートが Rust 2018を使っていても全く問題なく動作します。 その逆の場合も同様です。 念の為はっきりさせておきますが、ほとんどの機能は全てのエディションで利用可能です。 どのエディションを利用していても、新たな安定板リリースが出た際には改善を見ることができます。 時折、例えば新たなキーワードが導入されたりその他の理由で、あるエディション以降でしか利用できない機能追加があります。 そのような機能を利用したい時にエディションのアップデートを検討するのが良いでしょう。","breadcrumbs":"エディションとは? » 互換性","id":"2","title":"互換性"},"20":{"body":"Info RFC #2052 , which also proposed the Edition system Release version 1.31.0 The edition system was created for the release of Rust 2018. The release of the Rust 2018 edition coincided with a number of other features all coordinated around the theme of productivity . The majority of those features were backwards compatible and are now available on all editions; however, some of those changes required the edition mechanism (most notably the module system changes ).","breadcrumbs":"Rust 2018 » Rust 2018","id":"20","title":"Rust 2018"},"21":{"body":"Minimum Rust version: 1.31","breadcrumbs":"Rust 2018 » Path and module system changes » Path and module system changes","id":"21","title":"Path and module system changes"},"22":{"body":"Paths in use declarations now work the same as other paths. Paths starting with :: must now be followed with an external crate. Paths in pub(in path) visibility modifiers must now start with crate, self, or super.","breadcrumbs":"Rust 2018 » Path and module system changes » Summary","id":"22","title":"Summary"},"23":{"body":"The module system is often one of the hardest things for people new to Rust. Everyone has their own things that take time to master, of course, but there's a root cause for why it's so confusing to many: while there are simple and consistent rules defining the module system, their consequences can feel inconsistent, counterintuitive and mysterious. As such, the 2018 edition of Rust introduces a few new module system features, but they end up simplifying the module system, to make it more clear as to what is going on. Here's a brief summary: extern crate is no longer needed in 99% of circumstances. The crate keyword refers to the current crate. Paths may start with a crate name, even within submodules. Paths starting with :: must reference an external crate. A foo.rs and foo/ subdirectory may coexist; mod.rs is no longer needed when placing submodules in a subdirectory. Paths in use declarations work the same as other paths. These may seem like arbitrary new rules when put this way, but the mental model is now significantly simplified overall. Read on for more details!","breadcrumbs":"Rust 2018 » Path and module system changes » Motivation","id":"23","title":"Motivation"},"24":{"body":"Let's talk about each new feature in turn.","breadcrumbs":"Rust 2018 » Path and module system changes » More details","id":"24","title":"More details"},"25":{"body":"This one is quite straightforward: you no longer need to write extern crate to import a crate into your project. Before: // Rust 2015 extern crate futures; mod submodule { use futures::Future;\n} After: // Rust 2018 mod submodule { use futures::Future;\n} Now, to add a new crate to your project, you can add it to your Cargo.toml, and then there is no step two. If you're not using Cargo, you already had to pass --extern flags to give rustc the location of external crates, so you'd just keep doing what you were doing there as well. One small note here: cargo fix will not currently automate this change. We may have it do this for you in the future. An exception There's one exception to this rule, and that's the \"sysroot\" crates. These are the crates distributed with Rust itself. Usually these are only needed in very specialized situations. Starting in 1.41, rustc accepts the --extern=CRATE_NAME flag which automatically adds the given crate name in a way similar to extern crate. Build tools may use this to inject sysroot crates into the crate's prelude. Cargo does not have a general way to express this, though it uses it for proc_macro crates. Some examples of needing to explicitly import sysroot crates are: std : Usually this is not neccesary, because std is automatically imported unless the crate is marked with #![no_std] . core : Usually this is not necessary, because core is automatically imported, unless the crate is marked with #![no_core] . For example, some of the internal crates used by the standard library itself need this. proc_macro : This is automatically imported by Cargo if it is a proc-macro crate starting in 1.42. extern crate proc_macro; would be needed if you want to support older releases, or if using another build tool that does not pass the appropriate --extern flags to rustc. alloc : Items in the alloc crate are usually accessed via re-exports in the std crate. If you are working with a no_std crate that supports allocation, then you may need to explicitly import alloc. test : This is only available on the nightly channel , and is usually only used for the unstable benchmark support. Macros One other use for extern crate was to import macros; that's no longer needed. Macros may be imported with use like any other item. For example, the following use of extern crate: #[macro_use]\nextern crate bar; fn main() { baz!();\n} Can be changed to something like the following: use bar::baz; fn main() { baz!();\n} Renaming crates If you've been using as to rename your crate like this: extern crate futures as f; use f::Future; then removing the extern crate line on its own won't work. You'll need to do this: use futures as f; use self::f::Future; This change will need to happen in any module that uses f.","breadcrumbs":"Rust 2018 » Path and module system changes » No more extern crate","id":"25","title":"No more extern crate"},"26":{"body":"In use declarations and in other code, you can refer to the root of the current crate with the crate:: prefix. For instance, crate::foo::bar will always refer to the name bar inside the module foo, from anywhere else in the same crate. The prefix :: previously referred to either the crate root or an external crate; it now unambiguously refers to an external crate. For instance, ::foo::bar always refers to the name bar inside the external crate foo.","breadcrumbs":"Rust 2018 » Path and module system changes » The crate keyword refers to the current crate","id":"26","title":"The crate keyword refers to the current crate"},"27":{"body":"Previously, using an external crate in a module without a use import required a leading :: on the path. // Rust 2015 extern crate chrono; fn foo() { // this works in the crate root let x = chrono::Utc::now();\n} mod submodule { fn function() { // but in a submodule it requires a leading :: if not imported with `use` let x = ::chrono::Utc::now(); }\n} Now, extern crate names are in scope in the entire crate, including submodules. // Rust 2018 fn foo() { // this works in the crate root let x = chrono::Utc::now();\n} mod submodule { fn function() { // crates may be referenced directly, even in submodules let x = chrono::Utc::now(); }\n}","breadcrumbs":"Rust 2018 » Path and module system changes » Extern crate paths","id":"27","title":"Extern crate paths"},"28":{"body":"In Rust 2015, if you have a submodule: // This `mod` declaration looks for the `foo` module in\n// `foo.rs` or `foo/mod.rs`.\nmod foo; It can live in foo.rs or foo/mod.rs. If it has submodules of its own, it must be foo/mod.rs. So a bar submodule of foo would live at foo/bar.rs. In Rust 2018 the restriction that a module with submodules must be named mod.rs is lifted. foo.rs can just be foo.rs, and the submodule is still foo/bar.rs. This eliminates the special name, and if you have a bunch of files open in your editor, you can clearly see their names, instead of having a bunch of tabs named mod.rs. Rust 2015 Rust 2018 .\n├── lib.rs\n└── foo/ ├── mod.rs └── bar.rs .\n├── lib.rs\n├── foo.rs\n└── foo/ └── bar.rs","breadcrumbs":"Rust 2018 » Path and module system changes » No more mod.rs","id":"28","title":"No more mod.rs"},"29":{"body":"Minimum Rust version: 1.32 Rust 2018 simplifies and unifies path handling compared to Rust 2015. In Rust 2015, paths work differently in use declarations than they do elsewhere. In particular, paths in use declarations would always start from the crate root, while paths in other code implicitly started from the current scope. Those differences didn't have any effect in the top-level module, which meant that everything would seem straightforward until working on a project large enough to have submodules. In Rust 2018, paths in use declarations and in other code work the same way, both in the top-level module and in any submodule. You can use a relative path from the current scope, a path starting from an external crate name, or a path starting with crate, super, or self. Code that looked like this: // Rust 2015 extern crate futures; use futures::Future; mod foo { pub struct Bar;\n} use foo::Bar; fn my_poll() -> futures::Poll { ... } enum SomeEnum { V1(usize), V2(String),\n} fn func() { let five = std::sync::Arc::new(5); use SomeEnum::*; match ... { V1(i) => { ... } V2(s) => { ... } }\n} will look exactly the same in Rust 2018, except that you can delete the extern crate line: // Rust 2018 use futures::Future; mod foo { pub struct Bar;\n} use foo::Bar; fn my_poll() -> futures::Poll { ... } enum SomeEnum { V1(usize), V2(String),\n} fn func() { let five = std::sync::Arc::new(5); use SomeEnum::*; match ... { V1(i) => { ... } V2(s) => { ... } }\n} The same code will also work completely unmodified in a submodule: // Rust 2018 mod submodule { use futures::Future; mod foo { pub struct Bar; } use foo::Bar; fn my_poll() -> futures::Poll { ... } enum SomeEnum { V1(usize), V2(String), } fn func() { let five = std::sync::Arc::new(5); use SomeEnum::*; match ... { V1(i) => { ... } V2(s) => { ... } } }\n} This makes it easy to move code around in a project, and avoids introducing additional complexity to multi-module projects. If a path is ambiguous, such as if you have an external crate and a local module or item with the same name, you'll get an error, and you'll need to either rename one of the conflicting names or explicitly disambiguate the path. To explicitly disambiguate a path, use ::name for an external crate name, or self::name for a local module or item.","breadcrumbs":"Rust 2018 » Path and module system changes » use paths","id":"29","title":"use paths"},"3":{"body":"Cargoは新たなプロジェクトを作成する際に自動で最新のエディションをコンフィギュレーションに追加します。 > cargo +nightly new foo Created binary (application) `foo` project\n> cat .\\foo\\Cargo.toml\n[package]\nname = \"foo\"\nversion = \"0.1.0\"\nauthors = [\"your name \"]\nedition = \"2018\" [dependencies] この edition = \"2018\" によってあなたのパッケージが Rust 2018 を利用するように設定されます。 これ以外は必要ありません。 もし、他の古いエディションを使いたい場合は、その設定の値を変更できます。例えば、 [package]\nname = \"foo\"\nversion = \"0.1.0\"\nauthors = [\"your name \"]\nedition = \"2015\" [dependencies] とすると、あなたのパッケージは Rust 2015 でビルドされます。","breadcrumbs":"エディションとは? » 新しいプロジェクトを作成する » 新しいプロジェクトを作成する","id":"3","title":"新しいプロジェクトを作成する"},"30":{"body":"Minimum Rust version: 1.31","breadcrumbs":"Rust 2018 » Anonymous trait function parameters deprecated » Anonymous trait function parameters deprecated","id":"30","title":"Anonymous trait function parameters deprecated"},"31":{"body":"Trait function parameters may use any irrefutable pattern when the function has a body.","breadcrumbs":"Rust 2018 » Anonymous trait function parameters deprecated » Summary","id":"31","title":"Summary"},"32":{"body":"In accordance with RFC #1685 , parameters in trait method declarations are no longer allowed to be anonymous. For example, in the 2015 edition, this was allowed: trait Foo { fn foo(&self, u8);\n} In the 2018 edition, all parameters must be given an argument name (even if it's just _): trait Foo { fn foo(&self, baz: u8);\n}","breadcrumbs":"Rust 2018 » Anonymous trait function parameters deprecated » Details","id":"32","title":"Details"},"33":{"body":"Minimum Rust version: 1.27","breadcrumbs":"Rust 2018 » New keywords » New keywords","id":"33","title":"New keywords"},"34":{"body":"dyn is a strict keyword , in 2015 it is a weak keyword . async and await are strict keywords . try is a reserved keyword .","breadcrumbs":"Rust 2018 » New keywords » Summary","id":"34","title":"Summary"},"35":{"body":"","breadcrumbs":"Rust 2018 » New keywords » Motivation","id":"35","title":"Motivation"},"36":{"body":"The dyn Trait feature is the new syntax for using trait objects. In short: Box becomes Box &Trait and &mut Trait become &dyn Trait and &mut dyn Trait And so on. In code: trait Trait {} impl Trait for i32 {} // old\nfn function1() -> Box {\n# unimplemented!()\n} // new\nfn function2() -> Box {\n# unimplemented!()\n} That's it! Why? Using just the trait name for trait objects turned out to be a bad decision. The current syntax is often ambiguous and confusing, even to veterans, and favors a feature that is not more frequently used than its alternatives, is sometimes slower, and often cannot be used at all when its alternatives can. Furthermore, with impl Trait arriving, \"impl Trait vs dyn Trait\" is much more symmetric, and therefore a bit nicer, than \"impl Trait vs Trait\". impl Trait is explained here . In the new edition, you should therefore prefer dyn Trait to just Trait where you need a trait object.","breadcrumbs":"Rust 2018 » New keywords » dyn Trait for trait objects","id":"36","title":"dyn Trait for trait objects"},"37":{"body":"These keywords are reserved to implement the async-await feature of Rust, which was ultimately released to stable in 1.39.0 .","breadcrumbs":"Rust 2018 » New keywords » async and await","id":"37","title":"async and await"},"38":{"body":"The try keyword is reserved for use in try blocks, which have not (as of this writing) been stabilized ( tracking issue )","breadcrumbs":"Rust 2018 » New keywords » try keyword","id":"38","title":"try keyword"},"39":{"body":"","breadcrumbs":"Rust 2018 » Method dispatch for raw pointers to inference variables » Method dispatch for raw pointers to inference variables","id":"39","title":"Method dispatch for raw pointers to inference variables"},"4":{"body":"新たなエディションによってRustの書き方が変わるかも知れません。 新しい構文や新たなライブラリ機能の追加、そして時に機能の削除もあります。 例えば、try、async、awaitは Rust 2018ではキーワードですが、Rust 2015ではそうではありません。 もしあなたが Rust 2015のプロジェクトを持っていて、それを Rust 2018に移行したい場合には、やらなければならないことが幾つかあります。 我々は、新しいエディションへの移行をできるだけスムーズに行えるようにしたいと考えています。 もし、Rust 2018へアップグレードするのが大変な場合は、我々はそれをバグとみなします。 もし移行時に問題があった場合には バグ登録 してください。 訳注:Rustの日本語コミュニティもあります。 Slackを使用しており こちら から登録できます。 ここに例を挙げます。src/lib.rsに以下のコードがあるクレートがあるとします。 trait Foo { fn foo(&self, Box);\n} このコードは Boxという無名パラメータを使用しています。 これは Rust 2018ではサポートされておらず 、コンパイルに失敗します。 このコードを更新してみましょう。","breadcrumbs":"エディションとは? » 既存のプロジェクトのエディションを移行する » 既存のプロジェクトのエディションを移行する","id":"4","title":"既存のプロジェクトのエディションを移行する"},"40":{"body":"The tyvar_behind_raw_pointer lint is now a hard error.","breadcrumbs":"Rust 2018 » Method dispatch for raw pointers to inference variables » Summary","id":"40","title":"Summary"},"41":{"body":"See Rust issue #46906 for details.","breadcrumbs":"Rust 2018 » Method dispatch for raw pointers to inference variables » Details","id":"41","title":"Details"},"42":{"body":"","breadcrumbs":"Rust 2018 » Cargo changes » Cargo changes","id":"42","title":"Cargo changes"},"43":{"body":"If there is a target definition in a Cargo.toml manifest, it no longer automatically disables automatic discovery of other targets. Target paths of the form src/{target_name}.rs are no longer inferred for targets where the path field is not set. cargo install for the current directory is no longer allowed, you must specify cargo install --path . to install the current package.","breadcrumbs":"Rust 2018 » Cargo changes » Summary","id":"43","title":"Summary"},"44":{"body":"このセクションではRust 2018以降に導入された変更点を説明します。 訳注:このセクションは、英語版に以前あった「Next Edition」セクションの内容をベースにしています(英語版では現在は削除されています) 本書(和訳版)でも、次の「 Rust 2021 」セクションの翻訳作業が終わったら、このセクションを削除する予定です。","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » Rust 2018以降の変更","id":"44","title":"Rust 2018以降の変更"},"45":{"body":"Minimum Rust version: 1.32 dbg!マクロは println!よりも、より良いデバッグ体験を提供します。 fn main() { let x = 5; dbg!(x);\n} このプログラムを実行すると、次の出力が表示されます。 [src/main.rs:4] x = 5 これを見ると、このマクロが呼ばれたソースコードファイル名、行番号とともに、変数名とその値が表示されているのがわかります。 さらに、println!は標準出力に出力するので、標準エラーに出力するためにはeprintln!を使う必要がありますが、dbg!は正しく標準エラーに出力を行います。 dbg!マクロは、より複雑な状況でも動作します。以下の階乗の例を考えてみましょう。 fn factorial(n: u32) -> u32 { if n <= 1 { n } else { n * factorial(n - 1) }\n} これをデバッグしたい場合、eprintln!を使ってこのように書くかも知れません。 fn factorial(n: u32) -> u32 { eprintln!(\"n: {}\", n); if n <= 1 { eprintln!(\"n <= 1\"); n } else { let n = n * factorial(n - 1); eprintln!(\"n: {}\", n); n }\n} ここでは、各反復でnの値と、場合分けのコンテキストを記録したいのですが、 factorial(4)を実行すると以下の出力が得られます。 n: 4\nn: 3\nn: 2\nn: 1\nn <= 1\nn: 2\nn: 6\nn: 24 これは使えなくはないですが、特別に良いということでもありません。 コンテキストをより明確に表示するのに工夫することはできるでしょうが、ここではコードのデバッグをしているのではなく、デバッグ用のコードをより良くする方法を探そうとしています。 dbg!を使ったこのバージョンを考えてみましょう。 fn factorial(n: u32) -> u32 { if dbg!(n <= 1) { dbg!(1) } else { dbg!(n * factorial(n - 1)) }\n} ここでは、表示したい幾つかの式を単純にマクロで囲っています。 これを実行するとこのような出力が得られます。 [src/main.rs:3] n <= 1 = false\n[src/main.rs:3] n <= 1 = false\n[src/main.rs:3] n <= 1 = false\n[src/main.rs:3] n <= 1 = true\n[src/main.rs:4] 1 = 1\n[src/main.rs:5] n * factorial(n - 1) = 2\n[src/main.rs:5] n * factorial(n - 1) = 6\n[src/main.rs:5] n * factorial(n - 1) = 24\n[src/main.rs:11] factorial(4) = 24 eprintln!は常に()を返しますが、dbg!マクロは与えられた式の値を返すので、コードの構成を変える必要がありません。 加えて、表示結果にとても役に立つ情報が含まれています。","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » dbg! マクロ » dbg! マクロ","id":"45","title":"dbg! マクロ"},"46":{"body":"Minimum Rust version: 1.32 遠い遠い昔、RustはErlang風のとても大きなランタイムを持っていました。 その際、性能面での改善が得られていたので、システムの標準のアロケータではなく、jemallocを使うという選択をしました。 それ以来、我々はランタイムの機能を徐々に削ぎ落とし、最終的にはほとんど何もなくなりましたが、jemallocは残されていました。 カスタムのアロケータを選ぶ方法がなく、jemallocを必要としている人に影響を与えることなくそれを削除することが出来なかったからです。 さらに、jemallocは特定のプラットフォームでのみデフォルトなので、それが常にデフォルトだと言うのはややUnix偏重主義でしょう。 特にWindows上のMSVCターゲットは、長い間、システムのアロケータで出荷されています。 jemallocは通常とても良い性能を出しますが、常にというわけではありません。 加えて、jemallocを使うとRustのすべてのバイナリーが300kb大きくなります。 そして、過去にはjemallocにまつわる問題が多くありました。 また、システム言語であるRustが、システムが提供するアロケータを使わないのは少し変だとも考えられていました。 これらの理由により、Rust 1.28でグローバルアロケーターを選択できるようになってから、我々はシステムの提供するアロケータをデフォルトにして、jemallocはクレートを通じて使えるようにする計画を立て始めました。 Rust 1.32でこれが完成し、それぞれのプラットフォームでシステムが提供するアロケータがデフォルトで使われるようになりました。 もしjemallocを使い続けたいのであれば、jemallocatorクレートを使ってください。 あなたのCargo.tomlに以下のように書き、 jemallocator = \"0.1.8\" あなたのクレートのルートで以下のように書きます。 #[global_allocator]\nstatic ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc; これだけです。あなたがjemallocを必要としていなければ強制されませんし、もし必要であれば数行追加するだけです。","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » デフォルトでjemallocを使わない » デフォルトでjemallocを使わない","id":"46","title":"デフォルトでjemallocを使わない"},"47":{"body":"Minimum Rust version: 1.32 Rust 2018でモジュールシステムに幾つかの改善が加えられましたが、Rust 1.32.0で最終的な微調整の変更を一つ入れています。 「統一的なパス」と呼ばれるこの機能により、以前は不正だったインポートパス文を、インポート以外のパスと同じ様に解釈できるようになりました。例えば、以下の例を考えます。 enum Color { Red, Green, Blue,\n} use Color::*; 以前は、use文はsuper、selfあるいはcrateで始まらなければならなかったので、このコードはコンパイル出来ませんでした。 今ではコンパイラーが統一的なパスをサポートするようになり、このコードはあなたの想像通りの動作をします。 つまり、use文の上で宣言されているColor列挙型のヴァリアントをインポートします。","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » 統一的なパス » 統一的なパス","id":"47","title":"統一的なパス"},"48":{"body":"Minimum Rust version: 1.32 リテラル(literal)マッチャがマクロに付け加えられました。 macro_rules! m { ($lt:literal) => {};\n} fn main() { m!(\"some string literal\");\n} literalは、文字列リテラル、数値リテラル、文字リテラルなど、どんなタイプのリテラルにもマッチします。","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » リテラルマクロマッチャ » リテラルマクロマッチャ","id":"48","title":"リテラルマクロマッチャ"},"49":{"body":"Minimum Rust version: 1.32 macro_rules マクロ内で、?演算子を以下のように使えます。 macro_rules! bar { ($(a)?) => {}\n} 既に利用可能な *演算子が「0回以上」、+演算子が「1回以上」の繰り返しパターンを表すのと同様に、?演算子は0もしくは1回のパターンを表します。","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » マクロ内の?演算子 » マクロ内の?演算子","id":"49","title":"マクロ内の?演算子"},"5":{"body":"あなたのコードは互換性のない機能を使っているかも知れないし、使っていないかも知れません。 Rust 2018への移行を助けるためにCargoに新しいサブコマンドを追加しました。 まず初めにそれを起動してみましょう。 > cargo fix --edition これはあなたのコードをチェックして、自動的に移行の問題を修正してくれます。 もう一度 src/lib.rsを見てみましょう。 trait Foo { fn foo(&self, _: Box);\n} トレイトオブジェクトのためのパラメータ名が追加された形でコードが書き換えられています。 この場合は、パラメータ名がなかったので、使用されていないパラメータの慣習に従って _ を付加しています。 Cargo fixは常に自動的にコードを修正してくれるわけではありません。 もし、cargo fixがコードを修正できない時にはコンソールに修正できなかったという警告を表示します。 その場合は手動でコードを修正してください。 助けが必要な時は、このガイドの対応するセクションを参照してください。 問題がある場合は、 ユーザーフォーラム で助けを求めてください。 そして警告が出なくなるまで cargo fix --edition を繰り返し実行してください。 おめでとうございます! あなたのコードはRust 2015とRust 2018の双方で正しいコードになりました。","breadcrumbs":"エディションとは? » 既存のプロジェクトのエディションを移行する » あなたのコードを新しいエディションでコンパイルできるようにする","id":"5","title":"あなたのコードを新しいエディションでコンパイルできるようにする"},"50":{"body":"Minimum Rust version: 1.31 で最初に導入されました。 そしてその後のリリースで何度か拡張されています。詳細は以下を確認してください。 const fnによりコードを「constコンテキスト」で実行することができます(訳注:つまり、コンパイル時に評価されます)。例を示します。 const fn five() -> i32 { 5\n} const FIVE: i32 = five(); const fnでは任意のコードを実行することは出来ません。 というのは、簡単に言うと型システムを壊してしまうことになるからです。 詳細はここでは述べませんが、const fnでは最小限の言語サブセットのみを使えるところからスタートし、徐々に出来ることを増やしていく、というのが基本的な考え方です。 したがって、導入当初のRust 1.31では const fn関数を作ることは出来ましたが、実際に出来ることはほとんどありませんでした。 これが、const fnをRust 2018のセクションに含めなかった理由なのですが、実際、Rust 2018エディションのリリース時にはあまり使い物になりませんでした。 もしあなたがこのドキュメントを最初から最後まで読んだとすると、以前のバージョンで制約とされていた部分がその後のバージョンで緩和されていることがわかるでしょう。 さらに付け加えると、const fnで利用できる表記方が増えるに従って、標準ライブラリの機能がconst化されていっています。 ここではその変更の全てを述べることはしませんが、時とともに const化される部分が増えていくことは知っておいても良いでしょう。","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » const fn","id":"50","title":"const fn"},"51":{"body":"Minimum Rust version: 1.31 整数リテラルに対して算術演算をすることができます。 const fn foo() -> i32 { 5 + 6\n}","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » 整数の算術演算および比較演算","id":"51","title":"整数の算術演算および比較演算"},"52":{"body":"Minimum Rust version: 1.31 ブーリアン演算のほとんどが使えます。 例外は&&と||で、これらは短絡評価を行うので使えなくなっています。 const fn mask(val: u8) -> u8 { let mask = 0x0f; mask & val\n}","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » 多くのブーリアン演算","id":"52","title":"多くのブーリアン演算"},"53":{"body":"Minimum Rust version: 1.31 配列、構造体、列挙型、タプルを生成することができます。 struct Point { x: i32, y: i32,\n} enum Error { Incorrect, FileNotFound,\n} const fn foo() { let array = [1, 2, 3]; let point = Point { x: 5, y: 10, }; let error = Error::FileNotFound; let tuple = (1, 2, 3);\n}","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » 配列、構造体、列挙型、タプルの生成","id":"53","title":"配列、構造体、列挙型、タプルの生成"},"54":{"body":"Minimum Rust version: 1.31 const fnからconst fnを呼び出すことができます。 const fn foo() -> i32 { 5\n} const fn bar() -> i32 { foo()\n}","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » 他のconst関数の呼び出し","id":"54","title":"他のconst関数の呼び出し"},"55":{"body":"Minimum Rust version: 1.31 配列やスライスに添え字アクセスできます。 const fn foo() -> i32 { let array = [1, 2, 3]; array[1]\n}","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » 配列やスライスの添字式","id":"55","title":"配列やスライスの添字式"},"56":{"body":"Minimum Rust version: 1.31 構造体やタプルの構成要素にアクセスできます。 struct Point { x: i32, y: i32,\n} const fn foo() { let point = Point { x: 5, y: 10, }; let tuple = (1, 2, 3); point.x; tuple.0;\n}","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » 構造体やタプルのフィールドアクセス","id":"56","title":"構造体やタプルのフィールドアクセス"},"57":{"body":"Minimum Rust version: 1.31 定数の値を読み出せます。 const FOO: i32 = 5; const fn foo() -> i32 { FOO\n} 読み出せるのは const指定された定数 のみ で、static指定された変数は読み出せません。","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » 定数読み出し","id":"57","title":"定数読み出し"},"58":{"body":"Minimum Rust version: 1.31 参照を作ったり、参照外しをすることができます。 const fn foo(r: &i32) { *r; &5;\n}","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » 参照の & と *","id":"58","title":"参照の & と *"},"59":{"body":"Minimum Rust version: 1.31 キャストができます。 例外は生ポインタから整数へのキャスト。 const fn foo() { let x: usize = 5; x as i32;\n}","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » キャスト。ただし生ポインタから整数へのキャストは除く","id":"59","title":"キャスト。ただし生ポインタから整数へのキャストは除く"},"6":{"body":"新しいエディションの新機能を使うには明示的にオプトインする必要があります。 コミットする準備ができたら、Cargo.tomlに新しいエディションのキーバリューペアを追加してください。 例えば以下のような形になります。 [package]\nname = \"foo\"\nversion = \"0.1.0\"\nauthors = [\"Your Name \"]\nedition = \"2018\" もし editionキーがなければCargoはデフォルトで Rust 2015をエディションとして使います。 しかし上記の例では、2018を明示的に指定しているのでコードは Rust 2018でビルドされます。","breadcrumbs":"エディションとは? » 既存のプロジェクトのエディションを移行する » 新機能を使うために新たなエディションを有効化する","id":"6","title":"新機能を使うために新たなエディションを有効化する"},"60":{"body":"Minimum Rust version: 1.33 論駁不可能なパターンで値を分配することができます。 const fn foo((x, y): (u8, u8)) { // ...\n} ここで、fooはタプルの値をxとyに分配します。 if letでも同様に論駁不可能なパターンを使います。","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » 論駁不可能な分配パターン","id":"60","title":"論駁不可能な分配パターン"},"61":{"body":"Minimum Rust version: 1.33 ミュータブルとイミュータブルの双方のlet束縛を使うことができます。 const fn foo() { let x = 5; let mut y = 10;\n}","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » let 束縛","id":"61","title":"let 束縛"},"62":{"body":"Minimum Rust version: 1.33 代入と代入演算子を使うことができます。 const fn foo() { let mut x = 5; x = 10;\n}","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » 代入","id":"62","title":"代入"},"63":{"body":"Minimum Rust version: 1.33 const fnの中でunsafe fnを呼び出すことができます。 const unsafe fn foo() -> i32 { 5 } const fn bar() -> i32 { unsafe { foo() }\n}","breadcrumbs":"Rust 2018以降の変更(期間限定公開) » const fn » unsafe fn の呼び出し","id":"63","title":"unsafe fn の呼び出し"},"64":{"body":"Minimum Rust version: 1.33 Rust 1.33で新しい概念が導入され、二つの型で実装されました。 Pin